/* Landing Page Improvements CSS */

/* Button Hover States */
.wp-block-button .wp-element-button {
    transition: all 0.3s ease;
}

.wp-block-button .wp-element-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.wp-block-button__link {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

/* Primary/Gradient Button Hover */
.is-style-primary-gradient .wp-element-button:hover {
    background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    box-shadow: 0 15px 35px rgba(67, 56, 202, 0.3);
}

/* CTA/Gradient Button Hover */
.is-style-cta-gradient .wp-element-button:hover {
    background: linear-gradient(135deg, #dfddfb 0%, #e9e1f4 100%);
    box-shadow: 0 15px 35px rgba(67, 56, 202, 0.3);
}

/* Outline Button Hover */
.is-style-outline .wp-element-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hero Screenshot Hover */
.hero-screenshot img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-screenshot:hover img {
    transform: scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.3);
}

/* Feature Cards Hover */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Feature Images Hover */
.wp-block-columns .wp-block-image img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-columns .wp-block-image:hover img {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cp-section-heading {
    font-size: 5rem;
    margin-bottom: 3rem;
    font-weight: 700
}

.cp-hero-heading {
    font-size: 8rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cp-cta-heading {
    font-size: 6rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* FAQ Items Hover */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #c7d2fe;
}

/* FAQ Summary Hover */
.faq-item summary:hover {
    color: var(--wp--preset--color--primary);
}

/* Premium Badge Animation */
.premium-badge {
    transition: all 0.3s ease;
}

.premium-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Top Badge Animation */
.top-badge {
    transition: all 0.3s ease;
}

.top-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Improved focus states for accessibility */
.wp-element-button:focus,
.faq-item summary:focus {
    outline: 2px solid var(--wp--preset--color--primary);
    outline-offset: 2px;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .wp-block-columns.are-vertically-aligned-center {
        flex-direction: column;
    }
    
    .wp-block-column[style*="flex-basis:50%"] {
        flex-basis: 100% !important;
    }
    
    .hero-screenshot,
    .wp-block-image {
        margin-bottom: 2rem;
    }
    
    /* Reduce transform effects on mobile for performance */
    .hero-screenshot:hover img,
    .wp-block-columns .wp-block-image:hover img,
    .feature-card:hover,
    .wp-block-button .wp-element-button:hover {
        transform: none !important;
        transition: none !important;
    }
    
    /* Optimize mobile animations */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
              }
  }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .cp-hero-heading {
        font-size: clamp(2rem, 9vw, 2.8rem) !important;
        line-height: 1.15 !important;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4.5vw, 1.25rem) !important;
    }
    
    .hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem) !important;
    }
    
    .hero-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .top-badge {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
    }
    
    .wp-block-button {
        max-width: 100% !important;
    }
    
    .cta-primary-button .wp-element-button,
    .cta-secondary-button .wp-element-button {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* Enhanced CTA Section */
.cta-primary-button .wp-element-button {
    background-color: rgba(248, 250, 252, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-radius:12px;
    padding-top:1.25rem !important;
    padding-right:3rem !important;
    padding-bottom:1.25rem !important;
    padding-left:3rem !important;
    font-size:1.25rem;
    font-weight:700;
}

.cta-primary-button .wp-element-button:hover {
    padding-top:1.25rem !important;
    padding-right:3rem !important;
    padding-bottom:1.25rem !important;
    padding-left:3rem !important;
}

.cta-secondary-button .wp-element-button {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1) !important;
    border-color:rgba(255,255,255,0.5);
    border-radius:12px;
    border-width:2px;
    padding-top:1.25rem !important;
    padding-right:3rem !important;
    padding-bottom:1.25rem !important; 
    padding-left:3rem !important;
    font-size:1.25rem;
    font-weight:600;
}

.cta-secondary-button .wp-element-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color:rgba(255,255,255,0.5);
    border-radius:12px;
    border-width:2px;
    padding-top:1.25rem !important;
    padding-right:3rem !important;
    padding-bottom:1.25rem !important;
    padding-left:3rem !important;
    font-size:1.25rem;
    font-weight:600;
}

/* Loading performance optimization */
.wp-block-image img {
    will-change: transform;
}

.wp-element-button {
    will-change: transform, box-shadow;
}

.text-gradient-animated {
    background-image: linear-gradient(
        -90deg,
        #b2b2f1 0%,
        #ffffff 25%,
        #b2b2f1 50%,
        #ffffff 75%,
        #b2b2f1 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    animation: text-gradient-animation 10s linear infinite;
}

@keyframes text-gradient-animation {
    from {
        background-position: 0% center;
    }
    to {
        background-position: -200% center;
    }
}

/* Hero Video */
.hero-video-placeholder {
    transition: all 0.3s ease;
    border-radius:12px;
    padding-top:0;
    padding-right:0;
    padding-bottom:0;
    padding-left:0;
    background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position:relative;
    overflow:hidden;
    width:90%;
    aspect-ratio:16/10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-video-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px -12px rgba(0, 0, 0, 0.4) !important;
}

.hero-video-placeholder .video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-video-placeholder .video-play-btn:hover svg path {
    fill: #667eea;
}

/* Responsive adjustments for video placeholder */
@media (max-width: 768px) {
    .hero-video-placeholder {
        max-width: 100% !important;
        margin: 0 1rem;
    }
    
    .hero-video-placeholder .video-play-btn {
        width: 60px !important;
        height: 60px !important;
    }
    
    .hero-video-placeholder .video-play-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .hero-video-placeholder div[style*="padding:2rem"] {
        padding: 1.5rem !important;
    }
    
    .hero-video-placeholder h3 {
        font-size: 1.25rem !important;
    }
    
    .hero-video-placeholder p {
        font-size: 0.9rem !important;
    }
}

/* Animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-video-placeholder div[style*="border-radius:50%"] {
    animation: float 3s ease-in-out infinite;
}

.hero-video-placeholder div[style*="border-radius:50%"]:nth-child(4) {
    animation-delay: 0.5s;
}

.hero-video-placeholder div[style*="border-radius:50%"]:nth-child(5) {
    animation-delay: 1s;
}

.hero-video-placeholder div[style*="border-radius:50%"]:nth-child(6) {
    animation-delay: 1.5s;
}

.hero-video-placeholder div[style*="border-radius:50%"]:nth-child(7) {
    animation-delay: 2s;
} 

.glass-background {
    border-radius:12px;
    margin-bottom:2rem;
    padding-top:1rem;
    padding-right:1.5rem;
    padding-bottom:1rem;
    padding-left:1.5rem;
    background:rgba(255,255,255,0.15) !important;
    backdrop-filter:blur(10px) !important;
    border:1px solid rgba(255,255,255,0.2) !important;
    width:40rem !important;
    margin-inline:auto !important;
}

/* Light mode glass background for light backgrounds */
.glass-background-light {
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.03) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    width: 40rem !important;
    margin-inline: auto !important;
}

/* New styles for relocated video intro text */
.hero-video-intro {
    text-align: center;
}

.hero-video-intro .hero-video-preview-heading {
    color: var(--wp--preset--color--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.hero-video-intro .hero-video-preview-text {
    color: var(--wp--preset--color--white);
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.25rem
}

/* Hero Video Placeholder Inner Styles */
.hero-video-placeholder .wp-block-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0; /* Reset figure margin */
    z-index: 1;
}

.hero-video-placeholder .wp-block-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2; /* Make sure overlay is on top of video */
    margin-block-start:0;
}

.hero-video-deco {
    position: absolute;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50%;
    z-index: 3; /* Make sure deco elements are on top */
}

.hero-video-deco-1 {
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
}

.hero-video-deco-2 {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.hero-video-deco-3 {
    top: 60%;
    left: 15%;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.2) !important;
}

.hero-video-deco-4 {
    top: 25%;
    right: 15%;
    width: 30px;
    height: 30px;
}

.hero-section {
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-right: 2rem;
    padding-bottom: 4rem;
    padding-left: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-direction: column;
}

.hero-badge {
    max-width: 200px;
    border-radius: 8px;
    padding-top: 0.25rem;
    padding-right: 0.75rem;
    padding-bottom: 0.25rem;
    padding-left: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

.hero-subtitle {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-block-start: 0 !important;
}

.hero-description {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-block-start: 0 !important;
}

.testimonial-text {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    max-width: 600px;
}

.testimonial-stars {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.spacer-3rem {
    height: 3rem;
}

.feature-section {
    padding-top: 5rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
}

.feature-columns {
    margin-top: 2rem;
}

.feature-card-content {
    border-radius: 16px;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.feature-card-heading {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-card-text {
    font-size: 1.125rem;
    line-height: 1.6;
}

.feature-section-alt {
    padding-top: 5rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
}

.feature-row {
    margin-bottom: 4rem;
}

.feature-heading {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.feature-text {
    font-size: 1.25rem;
    line-height: 1.6;
}

.feature-subtext {
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.is-style-rounded--3 {
    border-radius: 12px !important;
}

.premium-section {
    padding-top: 5rem;
    padding-right: 2rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
}

.premium-badge-wrapper {
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.premium-row {
    margin-bottom: 3rem;
}

.premium-heading {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.premium-list {
    font-size: 1.125rem;
    line-height: 1.6;
}

.faq-section {
    padding-top: 6rem;
    padding-right: 2rem;
    padding-bottom: 6rem;
    padding-left: 2rem;
}

.faq-item-wrapper {
    border-radius: 16px;
    border-color: #e2e8f0;
    border-width: 1px;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.faq-question {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--wp--preset--color--contrast);
    cursor: pointer;
}

.faq-answer {
    margin-top: 1.5rem;
    color: var(--wp--preset--color--gray-600);
    font-size: 1.125rem;
    line-height: 1.6;
}

.bottom-cta-section {
    padding-top: 7rem;
    padding-right: 2rem;
    padding-bottom: 7rem;
    padding-left: 2rem;
    background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
    position: relative;
    overflow: hidden;
}

.bottom-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.bottom-cta-text {
    margin-bottom: 3.5rem;
    font-size: 1.375rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.bottom-cta-buttons {
    position: relative;
    z-index: 1;
}

.spacer-4rem {
    height: 4rem;
}

/* MailerLite Form Styles */
.form-container-group {
    position: relative;
}

.mailerlite-form-wrapper {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    will-change: height, opacity;
    margin-block-start:0 !important;
}

#hero-mailerlite-form-wrapper .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form.ml-block-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#hero-mailerlite-form-wrapper .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form.ml-block-form .ml-field-email input[type="email"] {
    background-color: rgba(255, 255, 255, 0.9) !important;
    color: var(--wp--preset--color--primary) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    width: 100%;
    box-sizing: border-box;
    
}

#hero-mailerlite-form-wrapper .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form.ml-block-form .ml-field-email input[type="email"]::placeholder {
    color: var(--wp--preset--color--primary) !important;
    opacity: 0.8;
}

#hero-mailerlite-form-wrapper .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form.ml-block-form .ml-form-embedSubmit button.primary {
    width: 100%;
    background-color: rgba(248, 250, 252, 0.8) !important;
    color: #1F2937 !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

#hero-mailerlite-form-wrapper .ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form.ml-block-form .ml-form-embedSubmit button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #f9fafb !important;
}

#mlb2-20716704 .ml-form-embedContainer .ml-form-embedWrapper {
    background: transparent !important;
    background-color: transparent !important;
}

/* Mobile Responsiveness */
@media (max-width: 782px) {
    /* Layout Adjustments */
    .wp-block-columns {
        flex-direction: column !important;
    }

    .wp-block-column {
        flex-basis: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .feature-row,
    .premium-row {
        margin-bottom: 2rem;
    }

    .feature-row .wp-block-column:not(:last-child) {
        margin-bottom: 2rem;
    }

    /* Section Padding */
    .hero-section,
    .feature-section,
    .premium-section,
    .faq-section,
    .bottom-cta-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
        min-height: auto !important;
    }
    
    .hero-badge {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem) !important;
        padding: 0.5rem 1rem !important;
        border-radius: 20px !important;
        display: inline-block !important;
        white-space: nowrap !important;
    }
    
    /* WordPress Plugin Badge - Top badge specific styling */
    .top-badge {
        font-size: clamp(0.75rem, 2.2vw, 0.85rem) !important;
        padding: 0.4rem 0.8rem !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        color: #4338ca !important;
        font-weight: 600 !important;
        backdrop-filter: blur(8px) !important;
    }
    
    .glass-background {
        margin-top: 1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 1rem !important;
    }
    
    .glass-background-light {
        width: 100% !important;
        margin-top: 1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 1rem !important;
    }

    .feature-section,
    .premium-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .faq-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .bottom-cta-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    /* Typography */
    .cp-hero-heading {
        font-size: clamp(2.5rem, 8vw, 4rem) !important; /* Responsive sizing */
        line-height: 1.1 !important;
        word-break: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: clamp(1.125rem, 4vw, 1.5rem) !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: clamp(1rem, 3vw, 1.125rem) !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .testimonial-text {
        font-size: clamp(0.9rem, 3vw, 1rem) !important;
    }
    
    .testimonial-stars {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem) !important;
    }

    .cp-section-heading {
        font-size: 2.5rem !important; /* was 5rem */
        margin-bottom: 2rem;
    }
    
    .cp-cta-heading {
        font-size: 3rem !important; /* was 6rem */
    }

    .feature-heading,
    .premium-heading {
        font-size: 1.75rem !important;
    }

    /* Specific Component Adjustments */
    .glass-background {
        width: 100% !important;
    }

    .hero-video-placeholder {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-primary-button .wp-element-button,
    .cta-secondary-button .wp-element-button {
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        min-height: 44px !important; /* Accessibility - minimum tap target */
    }
    
    /* Mobile button layout improvements */
    .wp-block-buttons {
        gap: 1rem !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-top: 1.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    .wp-block-button {
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .wp-block-button .wp-element-button {
        width: 100% !important;
        text-align: center !important;
    }

    .bottom-cta-text {
        font-size: clamp(1rem, 4vw, 1.125rem) !important;
    }
}

/* ===================================
   PRICING SECTION STYLES
   =================================== */

/* Pricing Section Layout */
.pricing-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.pricing-columns {
    align-items: stretch;
}

/* Pricing Cards */
.pricing-card {
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0e7ff;
}

/* Featured Premium Card */
.pricing-card-featured {
    border-color: var(--wp--preset--color--primary);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.2);
}

/* Pricing Badge */
.pricing-badge {
    position: absolute;
    top: -19px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    margin: 0;
}

/* Pricing Card Content */
.pricing-card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.pricing-card-description {
    font-size: 1rem;
    margin-bottom: 0;
    margin-block-start: 0 !important;
}

/* Pricing Display */
.pricing-price-wrapper {
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.pricing-period {
    font-size: 1.125rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Features List */
.pricing-features {
    flex-grow: 1;
    margin-block-start: 1rem !important;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    font-size: 0.88rem;
    line-height: 1.5;
    list-style: none;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.pricing-card .pricing-cta {
    margin-top: auto;
}

.pricing-card .pricing-cta .wp-element-button {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.pricing-card-premium .pricing-cta .wp-element-button {
    background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #6d28d9 100%);
    border: none;
}

.pricing-card-premium .pricing-cta .wp-element-button:hover {
    background: linear-gradient(135deg, #4338ca 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 782px) {
    .pricing-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .pricing-columns {
        gap: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-card-featured {
        transform: none;
        border-color: var(--wp--preset--color--primary);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .pricing-card-title {
        font-size: 1.75rem;
    }
    
    .pricing-price {
        font-size: 3rem;
    }
    
    .pricing-features li {
        font-size: 0.95rem;
    }
    
    .pricing-card .pricing-cta .wp-element-button {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    /* Disable transform effects on mobile for performance */
    .pricing-card:hover,
    .pricing-card-featured:hover {
        transform: none !important;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .pricing-section {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-card-title {
        font-size: 1.5rem;
    }
    
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
}

/* ===================================
   PRICING TESTIMONIAL STYLES
   =================================== */

.pricing-testimonial {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 1.5rem !important;
}

.pricing-testimonial-avatar {
    margin-bottom: 1.5rem;
}

.pricing-avatar-image {
    margin: 0 auto;
}

.pricing-avatar {
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-testimonial-text {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--wp--preset--color--contrast);
    margin-bottom: 1.5rem;
    margin-block-start: 0 !important;
}

.pricing-testimonial-author {
    margin-bottom: 1rem;
    gap: 0.5rem;
    align-items: center;
}

.pricing-testimonial-name {
    font-weight: 700;
    color: var(--wp--preset--color--contrast);
    margin: 0;
    font-size: 1.125rem;
}

.pricing-testimonial-title {
    color: var(--wp--preset--color--gray-600);
    margin: 0;
    font-size: 1rem;
}

.pricing-testimonial-stars {
    font-size: 1.25rem;
    margin: 0;
    margin-block-start: 0 !important;
}

/* Mobile responsiveness for testimonial */
@media (max-width: 782px) {
    .pricing-testimonial {
        padding: 1.5rem 1rem !important;
        max-width: 100%;
    }
    
    .pricing-avatar {
        width: 60px !important;
        height: 60px !important;
        border-width: 2px !important;
    }
    
    .pricing-testimonial-avatar {
        margin-bottom: 1rem;
    }
    
    .pricing-testimonial-text {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .pricing-testimonial-author {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .pricing-testimonial-name {
        font-size: 1rem;
    }
    
    .pricing-testimonial-title {
        font-size: 0.9rem;
    }
    
    .pricing-testimonial-stars {
        font-size: 1.125rem;
    }
}