/* Pricing Page Redesign - Modern, Fun, Conversion-Focused Design */

/* Hero Section */
.PricingNew-hero {
    background: linear-gradient(135deg, #64d2ff 0%, #32a8ee 50%, #1a8fd4 100%);
    padding: 80px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.PricingNew-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="white" opacity="0.08"/></svg>');
    animation: bgMove 20s linear infinite;
}

@keyframes bgMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(100px) translateY(100px);
    }
}

/* Floating emojis */
.PricingNew-hero-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.PricingNew-float-emoji {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 2.5rem;
    animation: floatEmoji 4s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.3;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes floatEmoji {
    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Hero badge */
.PricingNew-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

.PricingNew-badge-sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
}

@keyframes badgePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.2);
    }
}

/* Gradient text */
.PricingNew-gradient-text {
    background: linear-gradient(90deg, #fff 0%, #fbbf24 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 200% center;
    }
    100% {
        background-position: -200% center;
    }
}

.PricingNew-title-emoji {
    display: inline-block;
    animation: bounceEmoji 2s ease-in-out infinite;
}

@keyframes bounceEmoji {
    0%,
    100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.PricingNew-subtitle-highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Trust items */
.PricingNew-hero-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.PricingNew-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.PricingNew-trust-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.PricingNew-trust-icon {
    font-size: 18px;
}

.PricingNew-alert {
    background: rgba(255, 255, 255, 0.95);
    color: #dc3545;
    padding: 16px 24px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    border: 2px solid rgba(220, 53, 69, 0.2);
}

.PricingNew-alert-animated {
    animation: alertPulse 2s ease-in-out infinite;
}

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

.PricingNew-alert-icon {
    font-size: 24px;
    animation: alertShake 0.5s ease-in-out infinite;
}

@keyframes alertShake {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.PricingNew-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.PricingNew-hero-title {
    font-family: 'Helvetica Neue', -apple-system, sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

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

.PricingNew-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Pricing Section */
.PricingNew-pricing-section {
    padding: 60px 20px;
    background: #f8f9fc;
    margin-top: -40px;
    position: relative;
}

.PricingNew-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

/* Pricing Card */
.PricingNew-card {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.PricingNew-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #32a8ee, #64d2ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.PricingNew-card:hover::before {
    transform: scaleX(1);
}

.PricingNew-card:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(50, 168, 238, 0.2);
}

/* Card emoji icon */
.PricingNew-card-emoji {
    font-size: 48px;
    margin-bottom: 15px;
    animation: cardEmojiBounce 3s ease-in-out infinite;
}

@keyframes cardEmojiBounce {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Card ribbon */
.PricingNew-card-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: ribbonPulse 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes ribbonPulse {
    0%,
    100% {
        box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(239, 68, 68, 0.6);
    }
}

.PricingNew-card-featured {
    border: 3px solid #32a8ee;
    transform: scale(1.05);
}

.PricingNew-card-featured:hover {
    transform: scale(1.05) translateY(-12px);
    border-color: #64d2ff;
}

.PricingNew-card-featured::before {
    display: none;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.PricingNew-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #32a8ee 0%, #1a8fd4 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(50, 168, 238, 0.4);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.badge-star {
    animation: starSpin 2s ease-in-out infinite;
}

@keyframes starSpin {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
}

.badge-icon {
    font-size: 14px;
}

.PricingNew-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.PricingNew-card-name {
    font-size: 24px;
    font-weight: 700;
    color: #123048;
}

.PricingNew-card-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.PricingNew-badge-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #8b6914;
}

.PricingNew-badge-green {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.PricingNew-badge-blue {
    background: linear-gradient(135deg, #32a8ee 0%, #64d2ff 100%);
    color: white;
}

.PricingNew-card-price {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.PricingNew-price-original {
    font-size: 20px;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.PricingNew-price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #123048;
    line-height: 1;
    background: linear-gradient(135deg, #0c1929 0%, #32a8ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.PricingNew-price-period {
    font-size: 18px;
    color: #64748b;
    font-weight: 500;
}

.PricingNew-price-save {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 8px;
}

.PricingNew-card-features {
    flex: 1;
    margin-bottom: 30px;
}

.PricingNew-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.PricingNew-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #123048;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.PricingNew-features-list li:hover {
    background: #f0f9ff;
    transform: translateX(5px);
}

.PricingNew-features-list svg {
    flex-shrink: 0;
    color: #34d399;
    margin-top: 2px;
    transition: transform 0.3s ease;
}

.PricingNew-features-list li:hover svg {
    transform: scale(1.2);
}

.PricingNew-card-btn {
    display: block;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, #32a8ee 0%, #1a8fd4 100%);
    color: white;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(50, 168, 238, 0.4);
    position: relative;
    overflow: hidden;
}

.PricingNew-card-btn::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.6s ease;
}

.PricingNew-card-btn:hover::before {
    left: 100%;
}

.PricingNew-card-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(50, 168, 238, 0.5);
    text-decoration: none;
    color: white;
}

.PricingNew-card-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* Corporate CTA */
.PricingNew-corporate-cta {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
    border: 2px solid #32a8ee;
    transition: all 0.3s ease;
}

.PricingNew-corporate-cta:hover {
    box-shadow: 0 8px 30px rgba(50, 168, 238, 0.15);
    transform: translateY(-2px);
}

.PricingNew-corporate-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #32a8ee;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.PricingNew-corporate-cta:hover .PricingNew-corporate-icon {
    background: linear-gradient(135deg, #32a8ee 0%, #1a8fd4 100%);
    color: white;
    transform: scale(1.1);
}

.PricingNew-corporate-content {
    flex: 1;
    min-width: 200px;
}

.PricingNew-corporate-title {
    font-size: 28px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 10px 0;
}

.PricingNew-corporate-text {
    font-size: 16px;
    color: #5a5a5a;
    margin: 0;
}

.PricingNew-corporate-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #32a8ee 0%, #1a8fd4 100%);
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 168, 238, 0.3);
    white-space: nowrap;
}

.PricingNew-corporate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 168, 238, 0.4);
    text-decoration: none;
    color: white;
}

/* Benefits Section */
.PricingNew-benefits-section {
    padding: 80px 20px;
    background: white;
}

.PricingNew-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.PricingNew-section-title {
    font-family: 'Helvetica Neue', serif;
    font-size: 38px;
    text-align: center;
    font-weight: 700;
    color: #123048;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.PricingNew-section-subtitle {
    font-size: 18px;
    color: #5a5a5a;
    margin: 0;
}

.PricingNew-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.PricingNew-benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Different border colors for each card */
.PricingNew-benefit-card:nth-child(1) {
    border-color: #10b981; /* Green */
}
.PricingNew-benefit-card:nth-child(2) {
    border-color: #f59e0b; /* Orange */
}
.PricingNew-benefit-card:nth-child(3) {
    border-color: #8b5cf6; /* Purple */
}
.PricingNew-benefit-card:nth-child(4) {
    border-color: #ef4444; /* Red */
}
.PricingNew-benefit-card:nth-child(5) {
    border-color: #32a8ee; /* Blue */
}
.PricingNew-benefit-card:nth-child(6) {
    border-color: #ec4899; /* Pink */
}

.PricingNew-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Different icon backgrounds matching border colors */
.PricingNew-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 20px;
    padding: 18px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.PricingNew-benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.PricingNew-benefit-card:nth-child(1) .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}
.PricingNew-benefit-card:nth-child(1) .PricingNew-benefit-icon img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(52%) saturate(553%) hue-rotate(115deg)
        brightness(95%) contrast(92%);
}

.PricingNew-benefit-card:nth-child(2) .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}
.PricingNew-benefit-card:nth-child(2) .PricingNew-benefit-icon img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(73%) saturate(524%) hue-rotate(3deg)
        brightness(103%) contrast(95%);
}

.PricingNew-benefit-card:nth-child(3) .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}
.PricingNew-benefit-card:nth-child(3) .PricingNew-benefit-icon img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(94%) saturate(1352%) hue-rotate(232deg)
        brightness(99%) contrast(93%);
}

.PricingNew-benefit-card:nth-child(4) .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}
.PricingNew-benefit-card:nth-child(4) .PricingNew-benefit-icon img {
    filter: brightness(0) saturate(100%) invert(36%) sepia(93%) saturate(1352%) hue-rotate(338deg)
        brightness(101%) contrast(97%);
}

.PricingNew-benefit-card:nth-child(5) .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    box-shadow: 0 4px 15px rgba(50, 168, 238, 0.2);
}
.PricingNew-benefit-card:nth-child(5) .PricingNew-benefit-icon img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(85%) saturate(456%) hue-rotate(166deg)
        brightness(96%) contrast(91%);
}

.PricingNew-benefit-card:nth-child(6) .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}
.PricingNew-benefit-card:nth-child(6) .PricingNew-benefit-icon img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(96%) saturate(1186%) hue-rotate(306deg)
        brightness(99%) contrast(93%);
}

.PricingNew-benefit-card:hover .PricingNew-benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Hover states - icon background changes to solid color */
.PricingNew-benefit-card:nth-child(1):hover .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.PricingNew-benefit-card:nth-child(2):hover .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.PricingNew-benefit-card:nth-child(3):hover .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.PricingNew-benefit-card:nth-child(4):hover .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}
.PricingNew-benefit-card:nth-child(5):hover .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #32a8ee 0%, #1a8fd4 100%);
}
.PricingNew-benefit-card:nth-child(6):hover .PricingNew-benefit-icon {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.PricingNew-benefit-card:hover .PricingNew-benefit-icon img {
    filter: brightness(0) invert(1);
}

.PricingNew-benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 12px 0;
}

.PricingNew-benefit-text {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
    margin: 0;
}

/* AI Highlight */
.PricingNew-ai-highlight {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 2px solid #8b5cf6;
    transition: all 0.3s ease;
}

.PricingNew-ai-highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.PricingNew-ai-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    border-radius: 24px;
    padding: 22px;
    box-sizing: border-box;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.PricingNew-ai-highlight:hover .PricingNew-ai-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    transform: scale(1.1) rotate(5deg);
}

.PricingNew-ai-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(43%) sepia(94%) saturate(1352%) hue-rotate(232deg)
        brightness(99%) contrast(93%);
    transition: filter 0.3s ease;
}

.PricingNew-ai-highlight:hover .PricingNew-ai-icon img {
    filter: brightness(0) invert(1);
}

.PricingNew-ai-title {
    font-size: 36px;
    font-weight: 700;
    color: #123048;
    margin: 0 0 20px 0;
}

.PricingNew-ai-text {
    font-size: 18px;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
}

/* Social Proof Section */
.PricingNew-social-proof {
    padding: 80px 20px;
    text-align: center;
}

.PricingNew-trustpilot {
    max-width: 150px;
    margin: 30px auto 40px;
    display: block;
}

.PricingNew-ratings-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.PricingNew-rating-card {
    background: white;
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.PricingNew-rating-score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.PricingNew-rating-number {
    font-size: 48px;
    font-weight: 700;
    color: #32a8ee;
}

.PricingNew-rating-divider {
    font-size: 16px;
    color: #5a5a5a;
}

.PricingNew-rating-source {
    font-size: 14px;
    color: #5a5a5a;
    margin: 0;
}

.PricingNew-rating-image-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.PricingNew-rating-image-card img {
    max-width: 100%;
    height: auto;
}

/* 3-column ratings grid */
.PricingNew-ratings-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    padding-bottom: 20px;
}

.PricingNew-rating-emoji {
    font-size: 48px;
    margin-bottom: 16px;
    animation: bounceEmoji 2s ease-in-out infinite;
}

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

.PricingNew-rating-number-large {
    font-size: 42px;
    font-weight: 800;
    color: #32a8ee;
    line-height: 1;
}

/* Fun Social Proof Styles */
.PricingNew-social-proof-fun {
    position: relative;
    overflow: hidden;
}

.PricingNew-floating-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    left: var(--x);
    font-size: 2rem;
    animation: floatUp 4s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.3;
}

@keyframes floatUp {
    0%,
    100% {
        transform: translateY(100%) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) scale(1.2);
        opacity: 0;
    }
}

.PricingNew-love-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #32a8ee;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(50, 168, 238, 0.2);
    border: 2px solid rgba(50, 168, 238, 0.1);
    position: relative;
    z-index: 2;
}

.love-pulse {
    animation: lovePulse 1s ease-in-out infinite;
}

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

.PricingNew-section-title-fun {
    position: relative;
    z-index: 2;
}

.love-text {
    background: linear-gradient(135deg, #ef4444 0%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.love-text::after {
    content: '💕';
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 20px;
    animation: heartFloat 2s ease-in-out infinite;
}

@keyframes heartFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.PricingNew-rating-card-fun {
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.PricingNew-rating-card-fun:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #32a8ee;
    box-shadow: 0 20px 50px rgba(50, 168, 238, 0.2);
}

.rating-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(50, 168, 238, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.PricingNew-rating-card-fun:hover .rating-card-glow {
    opacity: 1;
}

.PricingNew-rating-card-highlight {
    border: 2px solid #fbbf24;
}

.PricingNew-rating-emoji-bounce {
    animation: emojiBounce 2s ease-in-out infinite;
}

@keyframes emojiBounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-10px) scale(1.1);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(-5px) scale(1.05);
    }
}

.PricingNew-rating-emoji-spin {
    animation: emojiSpin 3s ease-in-out infinite;
}

@keyframes emojiSpin {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
    75% {
        transform: rotate(-5deg) scale(1.05);
    }
}

.PricingNew-rating-stars-animated {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
}

.star-animate {
    font-size: 24px;
    color: #fbbf24;
    animation: starPop 0.5s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
    transform: scale(0);
}

@keyframes starPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.3) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.rating-card-confetti {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    animation: confettiShake 2s ease-in-out infinite;
}

@keyframes confettiShake {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.rating-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.rating-card-verified {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.PricingNew-social-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    padding: 20px 30px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(50, 168, 238, 0.15);
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.social-cta-emoji {
    font-size: 28px;
    animation: bookBounce 2s ease-in-out infinite;
}

@keyframes bookBounce {
    0%,
    100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

.PricingNew-social-cta span {
    font-size: 16px;
    font-weight: 600;
    color: #123048;
}

.social-cta-btn {
    background: linear-gradient(135deg, #32a8ee 0%, #1a8fd4 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(50, 168, 238, 0.4);
}

.social-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(50, 168, 238, 0.5);
    color: white;
    text-decoration: none;
}

.PricingNew-rating-stars {
    display: block;
    font-size: 24px;
    color: #fbbf24;
    margin-top: 8px;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

.PricingNew-rating-card .PricingNew-trustpilot {
    height: 32px;
    margin-bottom: 16px;
}

.PricingNew-rating-card .PricingNew-rating-divider {
    font-size: 24px;
    font-weight: 600;
    color: #64748b;
}

.PricingNew-rating-card {
    text-align: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.PricingNew-rating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(50, 168, 238, 0.15);
}

/* Featured Section */
.PricingNew-featured-section {
    padding: 80px 20px;
    background: white;
    text-align: center;
}

.PricingNew-book-testimonials .book-testimonials {
    margin-top: 0px !important;
}

.PricingNew-section-title-spacing {
    margin-top: 60px;
}

.PricingNew-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto;
}

.PricingNew-logos-grid img {
    max-width: 150px;
    height: 60px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.PricingNew-logos-grid img:hover {
    opacity: 1;
}

/* FAQ Section */
.PricingNew-faq-section {
    padding: 80px 20px;.
}

.PricingNew-faq-list {
    max-width: 800px;
    margin: 0 auto 30px;
}

.PricingNew-faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.PricingNew-faq-item input[type='checkbox'] {
    display: none;
}

.PricingNew-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #123048;
    transition: background 0.3s ease;
    margin: 0;
}

.PricingNew-faq-question:hover {
    background: #f8f9fc;
}

.PricingNew-faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #32a8ee;
}

.PricingNew-faq-item input[type='checkbox']:checked + .PricingNew-faq-question svg {
    transform: rotate(180deg);
}

.PricingNew-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.PricingNew-faq-item input[type='checkbox']:checked ~ .PricingNew-faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.PricingNew-faq-answer p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
    margin: 0;
}

.PricingNew-faq-answer a {
    color: #32a8ee;
    text-decoration: none;
}

.PricingNew-faq-answer a:hover {
    text-decoration: underline;
}

.PricingNew-faq-footer {
    text-align: center;
    font-size: 16px;
    color: #5a5a5a;
}

.PricingNew-faq-footer a {
    color: #32a8ee;
    text-decoration: none;
    font-weight: 600;
}

.PricingNew-faq-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .PricingNew-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .PricingNew-hero-title {
        font-size: 38px;
    }

    .PricingNew-hero-subtitle {
        font-size: 18px;
    }

    .PricingNew-cards-grid {
        grid-template-columns: 1fr;
    }

    .PricingNew-card-featured {
        transform: scale(1);
    }

    .PricingNew-card-featured:hover {
        transform: translateY(-8px);
    }

    .PricingNew-ratings-grid {
        grid-template-columns: 1fr;
    }

    .PricingNew-ratings-grid-3 {
        grid-template-columns: 1fr;
    }

    .PricingNew-rating-number-large {
        font-size: 36px;
    }

    .PricingNew-rating-emoji {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .PricingNew-hero {
        padding: 60px 20px 80px;
    }

    .PricingNew-hero-title {
        font-size: 32px;
    }

    .PricingNew-hero-subtitle {
        font-size: 16px;
    }

    .PricingNew-pricing-section {
        padding: 40px 20px;
    }

    .PricingNew-card {
        padding: 30px 20px;
    }

    .PricingNew-price-amount {
        font-size: 44px;
    }

    .PricingNew-corporate-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .PricingNew-corporate-title {
        font-size: 24px;
    }

    .PricingNew-benefits-section,
    .PricingNew-social-proof,
    .PricingNew-featured-section,
    .PricingNew-faq-section {
        padding: 60px 20px;
    }

    .PricingNew-section-title {
        font-size: 28px;
    }

    .PricingNew-section-subtitle {
        font-size: 16px;
    }

    .PricingNew-benefits-grid {
        grid-template-columns: 1fr;
    }

    .PricingNew-ai-highlight {
        padding: 40px 20px;
    }

    .PricingNew-ai-title {
        font-size: 28px;
    }

    .PricingNew-ai-text {
        font-size: 16px;
    }

    .PricingNew-logos-grid {
        gap: 30px;
    }

    .PricingNew-logos-grid img {
        max-width: 120px;
        height: 50px;
    }

    .PricingNew-faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .PricingNew-faq-item input[type='checkbox']:checked ~ .PricingNew-faq-answer {
        padding: 0 20px 20px;
    }

    /* Fun social proof responsive */
    .floating-heart {
        font-size: 1.5rem;
    }

    .PricingNew-love-badge {
        padding: 10px 18px;
        font-size: 12px;
    }

    .love-text::after {
        display: none;
    }

    .PricingNew-social-cta {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }

    .rating-badge {
        position: static;
        transform: none;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .PricingNew-hero-title {
        font-size: 26px;
    }

    .PricingNew-cards-grid {
        gap: 20px;
    }

    .PricingNew-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .PricingNew-corporate-icon {
        width: 60px;
        height: 60px;
    }
}
