/**
 * Custom Add to Cart Pro — product landing template
 * Extracted from inline styles for caching & PageSpeed.
 */
    /* Clean Design Variables */
    :root {
        --primary: #3b82f6;
        --primary-dark: #1d4ed8;
        --accent: #f59e0b;
        --text-dark: #1e293b;
        --text-muted: #64748b;
        --bg-light: #ffffff;
        --bg-subtle: #f8fafc;
        --border: #e2e8f0;
        --shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
        --radius: 12px;
    }

    /* Reset and Base */

    /* Section 1 - Hero */
    .maincustom-sec {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
    }

    .maincustom-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        opacity: 0.5;
    }

    .sec_p {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .text h1,
    .text h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 20px;
        color: var(--text-dark);
        line-height: 1.1;
    }

    .text h1 .highlight,
    .text h2 .highlight {
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .text .subtitle {
        font-size: 20px;
        color: var(--primary);
        font-weight: 600;
        margin: 0 0 24px;
        display: block;
    }

    .text p {
        font-size: 18px;
        color: var(--text-muted);
        margin: 0 0 32px;
        line-height: 1.7;
        max-width: 540px;
    }

    .text .features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 32px;
    }

    .text .features-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--text-muted);
        font-size: 16px;
        padding: 10px 0px;
    }

    .text .features-list li::before {
        content: '✓';
        width: 20px;
        height: 20px;
        background: var(--primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        flex-shrink: 0;
    }

    .flex-btn {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .b_btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 16px 32px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        border-radius: var(--radius);
        font-weight: 600;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
    }

    .b_btn:hover {
        background: var(--primary-dark);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    }

    .b_btn.secondary {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        box-shadow: none;
    }

    .b_btn.secondary:hover {
        background: var(--primary);
        color: white;
    }

    .sec-1 {
        text-align: center;
        position: relative;
    }

    .hero-image {
        position: relative;
        max-width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-image img {
        max-width: 400px;
        width: 100%;
        height: auto;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
        object-fit: contain;
    }

    .hero-image:hover img {
        transform: scale(1.02);
        box-shadow: var(--shadow-md);
    }

    .hero-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
        border-radius: var(--radius);
        z-index: -1;
    }

    /* Floating elements for visual interest */
    .hero-image::after {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 50%;
        opacity: 0.1;
        z-index: -1;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(180deg);
        }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {

        /* Hero Section Mobile */
        .maincustom-sec {
            padding: 60px 0;
        }

        .sec_p {
            grid-template-columns: 1fr;
            gap: 40px;
            /* text-align: center; */
        }

        .text h1,
        .text h2 {
            font-size: 1.5rem;
        }

        .text .subtitle {
            font-size: 16px;
            margin: 24px 0;
        }

        .text p {
            font-size: 16px;
            max-width: 100%;
        }

        .text .features-list {
            text-align: left;
            max-width: 300px;
            margin: 0 auto 32px;
        }

        .text .features-list li {
            font-size: 12px;
        }

        .flex-btn {
            justify-content: center;
        }

        .b_btn {
            padding: 14px 24px;
            font-size: 15px;
        }

        /* Section 2 — statistics strip (matches home stats-section) */
        .hwx-catc-pro-wrap .stats-section {
            padding: 80px 0;
        }

        .hwx-catc-pro-wrap .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 100%;
        }

        .hwx-catc-pro-wrap .stats-section .stat-item {
            padding: 40px 20px;
        }

        .hwx-catc-pro-wrap .stats-section .stat-item h3 {
            font-size: 2rem;
        }

        .hwx-catc-pro-wrap .stats-section .stat-item p {
            font-size: 0.9rem;
        }

        /* Section 3 & 4 Mobile */
        .features-sec {
            padding: 60px 0;
        }

        .hwx-catc-pro-wrap .features-sec {
            padding: 60px 0;
        }

        .hwx-catc-pro-wrap .hwx-catc-key-features__grid {
            grid-template-columns: 1fr;
            gap: 0.85rem;
        }

        .hwx-catc-pro-wrap .hwx-catc-key-features__shell {
            padding: 1.25rem 1rem 1.35rem;
            border-radius: 1rem;
        }

        .hwx-catc-pro-wrap .hwx-catc-key-features__card {
            padding: 1rem;
        }

        .hwx-catc-pro-wrap .hwx-catc-key-features__card-icon {
            width: 2.1rem;
            height: 2.1rem;
            font-size: 0.72rem;
        }

        .flex-sec {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .t-heading h2 {
            font-size: 32px;
            text-align: center;
        }

        .t-heading h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .pop_list {
            margin: 0 0 24px;
        }

        .pop_list li {
            padding: 12px 16px;
            font-size: 15px;
            margin-bottom: 16px;
        }

        .gif-img img,
        .gif-img iframe {
            border-radius: 16px;
        }

        .gif-img::before {
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border-radius: 24px;
        }

        .flex-sec .t-heading {
            padding-right: 0;
        }

        .flex-sec .gif-img {
            padding-left: 0;
        }

        /* .flex-sec.mrgn_btm .gif-img iframe {
        border-radius: 16px;
        height: 530px;
        max-width: 570px;
    } */

        /* Service Cards Responsive */
        .advertisers-service-sec {
            padding: 60px 20px;
        }

        .advertisers-service-sec h2 {
            font-size: 1.5rem;
        }

        .box-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .service-card {
            padding: 40px 25px;
        }

        /* Testimonials Responsive */
        .testimonials-section {
            padding: 60px 20px;
        }

        .testimonials-header h2 {
            font-size: 1.5rem;
        }

        .testimonials-carousel {
            padding: 0 10px;
        }

        .testimonials-carousel .owl-item {
            padding: 0 10px;
        }

        .testimonials-carousel .owl-prev,
        .testimonials-carousel .owl-next {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .testimonials-carousel .owl-prev {
            left: -20px;
        }

        .testimonials-carousel .owl-next {
            right: -20px;
        }

        .testimonial-card {
            padding: 30px 25px;
        }

        .testimonial-header {
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .customer-info {
            text-align: center;
        }

        /* Testimonial Popup Responsive */
        .popup-content {
            width: 95%;
            margin: 20px;
        }

        .popup-header {
            padding: 25px 25px 20px;
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .popup-body {
            padding: 25px;
        }

        .popup-footer {
            padding: 20px 25px 25px;
            text-align: center;
        }

        /* Pricing Responsive (home-style) */
        .hwx-catc-pro-wrap .pricing-section {
            padding: 60px 20px;
        }

        .hwx-catc-pro-wrap .pricing-section .section-header h2 {
            font-size: 1.5rem;
        }

        .pricing-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .pricing-card {
            padding: 40px 30px;
        }

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

        .pricing-card.featured:hover {
            transform: translateY(-15px);
        }

        /* General Responsive */
        .maincustom-sec,
        .features-sec,
        .advertisers-service-sec,
        .slider_sec,
        .plan-card,
        .acc-sec,
        .sppt_sec,
        .demo_sec {
            padding: 20px 0;
        }

        .text h1,
        .text h2 {
            font-size: 32px;
        }

        .heading h2,
        .slider_sec h3,
        .demo_sec .t-heading h2,
        .advertisers-service-sec h2 {
            font-size: 28px;
        }

        .t-heading h2 {
            font-size: 24px;
        }

        .container,
        .container-2,
        .container-3,
        .container_own {
            padding: 0px;
        }

        .flex-btn {
            justify-content: center;
        }

        .b_btn {
            padding: 12px 24px;
            font-size: 14px;
        }

        /* FAQ Responsive */
        .hwx-catc-pro-wrap .acc-sec {
            padding: clamp(2rem, 6vw, 3rem) 0;
        }

        .hwx-catc-pro-wrap .acc-sec .heading h2 {
            font-size: 1.35rem;
        }

        .hwx-catc-pro-wrap .vrsn_grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 0 0.5rem;
        }

        .hwx-catc-pro-wrap .acc-sec .accordion {
            padding: 0.75rem 2.25rem 0.75rem 0.875rem;
            font-size: 0.9rem;
        }

        .grid-card {
            grid-template-columns: 1fr;
        }

        .card-gold {
            transform: none;
        }

        .card-gold:hover {
            transform: translateY(-6px);
        }
    }

    /* Section 2 — stats (matches home.php stats-section; scoped to product landing) */
    .hwx-catc-pro-wrap .stats-section {
        padding-block: var(--hwx-sec-y, clamp(2.5rem, 4.5vw, 3.75rem));
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        position: relative;
        overflow: hidden;
    }

    .hwx-catc-pro-wrap .stats-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .hwx-catc-pro-wrap .stats-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="catc-stats-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="rgba(59,130,246,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23catc-stats-pattern)"/></svg>');
        pointer-events: none;
    }

    .hwx-catc-pro-wrap .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--hwx-stack, clamp(1.25rem, 2.5vw, 2rem));
        position: relative;
        z-index: 1;
        margin: 0 auto;
        max-width: 100%;
    }

    @media (min-width: 1024px) {
        .hwx-catc-pro-wrap .stats-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    .hwx-catc-pro-wrap .stats-section .stat-item {
        text-align: center;
        padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.5rem);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        animation: fadeInUp 1s ease-out both;
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:nth-child(1) {
        animation-delay: 0.2s;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:nth-child(2) {
        animation-delay: 0.4s;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:nth-child(3) {
        animation-delay: 0.6s;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:nth-child(4) {
        animation-delay: 0.8s;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:nth-child(5) {
        animation-delay: 1s;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:nth-child(6) {
        animation-delay: 1.2s;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:hover {
        transform: translateY(-15px) scale(1.03);
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
        border-color: rgba(59, 130, 246, 0.4);
        box-shadow:
            0 25px 60px rgba(59, 130, 246, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:hover::before {
        opacity: 1;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item h3 {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
        font-weight: 900;
        background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
        text-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
        transition: all 0.4s ease;
        line-height: 1;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:hover h3 {
        background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 50%, #dbeafe 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transform: scale(1.08);
        text-shadow: 0 12px 24px rgba(59, 130, 246, 0.6);
    }

    .hwx-catc-pro-wrap .stats-section .stat-item p {
        font-size: 14px;
        color: #cbd5e1;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        position: relative;
        z-index: 1;
        transition: all 0.4s ease;
        margin: 0;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:hover p {
        color: #e2e8f0;
        transform: translateY(-2px);
    }

    .hwx-catc-pro-wrap .stats-section .stat-item-icon {
        font-size: 2rem;
        line-height: 1;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item-icon img {
        max-height: 40px;
        width: auto;
        display: inline-block;
        vertical-align: middle;
        -webkit-text-fill-color: initial;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, #3b82f6, #1e40af, #8b5cf6, #06b6d4);
        border-radius: 27px;
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
        filter: blur(8px);
    }

    .hwx-catc-pro-wrap .stats-section .stat-item:hover::after {
        opacity: 0.4;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item .floating-particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: #3b82f6;
        border-radius: 50%;
        opacity: 0;
        animation: floatParticle 3s ease-in-out infinite;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item .floating-particle:nth-child(1) {
        top: 20%;
        left: 15%;
        animation-delay: 0s;
    }

    .hwx-catc-pro-wrap .stats-section .stat-item .floating-particle:nth-child(2) {
        bottom: 25%;
        right: 15%;
        animation-delay: 1.5s;
    }

    @keyframes floatParticle {
        0%,
        100% {
            opacity: 0;
            transform: translateY(0) scale(0);
        }

        50% {
            opacity: 1;
            transform: translateY(-20px) scale(1);
        }
    }

    /* Section 3 — Key features (premium shell + icon cards) */
    @keyframes hwxKfCardIn {
        from {
            opacity: 0;
            transform: translateY(14px);
        }

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

    .hwx-catc-pro-wrap .hwx-catc-key-features {
        max-width: 58rem;
        margin: 0 auto clamp(2.5rem, 5vw, 5rem);
        padding: 0;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__shell {
        position: relative;
        padding: clamp(1.75rem, 4vw, 2.75rem);
        border-radius: 1.25rem;
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.98) 100%);
        border: 1px solid rgba(15, 23, 42, 0.06);
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.85) inset,
            0 24px 48px rgba(15, 23, 42, 0.06),
            0 4px 12px rgba(15, 23, 42, 0.03);
        overflow: hidden;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__shell::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 85% 60% at 10% -10%, rgba(59, 130, 246, 0.09) 0%, transparent 52%),
            radial-gradient(ellipse 70% 50% at 100% 0%, rgba(196, 122, 26, 0.07) 0%, transparent 48%);
        pointer-events: none;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__shell > * {
        position: relative;
        z-index: 1;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__header {
        text-align: center;
        margin-bottom: clamp(1.35rem, 2.8vw, 2rem);
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__eyebrow {
        margin: 0 0 0.5rem;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--catc-gold, #c47a1a);
        font-family: system-ui, -apple-system, sans-serif;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__title {
        font-family: var(--hwx-font-display, "Cormorant Garamond", Georgia, "Times New Roman", serif);
        font-size: clamp(1.95rem, 3.4vw, 2.65rem);
        font-weight: 600;
        line-height: 1.12;
        letter-spacing: -0.03em;
        margin: 0;
        padding: 0 0 0.75rem;
        position: relative;
        display: inline-block;
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #334155 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 5rem;
        height: 3px;
        border-radius: 3px;
        background: linear-gradient(90deg, var(--catc-gold, #c47a1a) 0%, #3b82f6 50%, #6366f1 100%);
        -webkit-text-fill-color: initial;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__grid {
        list-style: none;
        margin: 0 0 clamp(1.35rem, 2.5vw, 1.85rem);
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem 1.15rem;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card {
        --kf-glow: rgba(59, 130, 246, 0.12);
        display: flex;
        align-items: flex-start;
        gap: 0.9rem;
        margin: 0;
        padding: 1.1rem 1.15rem 1.15rem 1.1rem;
        font-size: clamp(0.925rem, 1.35vw, 1.04rem);
        line-height: 1.5;
        font-weight: 500;
        color: #334155;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(15, 23, 42, 0.06);
        border-radius: 1rem;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
        transition:
            transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
            box-shadow 0.28s ease,
            border-color 0.28s ease;
        animation: hwxKfCardIn 0.55s ease backwards;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(1) {
        animation-delay: 0.04s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(3) {
        animation-delay: 0.16s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(4) {
        animation-delay: 0.22s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(5) {
        animation-delay: 0.28s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(6) {
        animation-delay: 0.34s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(7) {
        animation-delay: 0.4s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:nth-child(8) {
        animation-delay: 0.46s;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card:hover {
        transform: translateY(-4px);
        border-color: rgba(59, 130, 246, 0.2);
        box-shadow:
            0 16px 36px var(--kf-glow),
            0 4px 12px rgba(15, 23, 42, 0.06);
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card-icon {
        flex-shrink: 0;
        width: 2.35rem;
        height: 2.35rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0.05rem;
        border-radius: 0.65rem;
        color: #fff;
        font-size: 0.8rem;
        background: linear-gradient(145deg, #2563eb 0%, #4f46e5 55%, #7c3aed 100%);
        box-shadow:
            0 6px 16px rgba(37, 99, 235, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__card-text {
        flex: 1;
        min-width: 0;
    }

    .hwx-catc-pro-wrap .hwx-catc-key-features__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.85rem 1rem;
        align-items: center;
        justify-content: center;
        padding-top: 0.25rem;
    }

    @media (prefers-reduced-motion: reduce) {
        .hwx-catc-pro-wrap .hwx-catc-key-features__card {
            animation: none;
        }

        .hwx-catc-pro-wrap .hwx-catc-key-features__card:hover {
            transform: none;
        }
    }

    /* Section 3 & 4 - Features */
    .features-sec {
        background: transparent;
    }

    .hwx-catc-pro-wrap .features-sec {
        padding-block: var(--hwx-sec-y);
        background: linear-gradient(180deg, #faf9f7 0%, #ffffff 42%, #f8fafc 100%);
        position: relative;
    }

    .hwx-catc-pro-wrap .features-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%);
        pointer-events: none;
    }

    .hwx-catc-pro-wrap .features-sec > .container {
        position: relative;
        z-index: 1;
    }

    .flex-sec {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 80px;
    }

    .flex-sec.mrgn_btm {
        margin-bottom: 0;
    }

    .t-heading h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 32px;
        color: var(--text-dark);
        line-height: 1.2;
        position: relative;
    }

    .t-heading h2::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 2px;
    }

    .pop_list {
        list-style: none;
        padding: 0;
        margin: 0 0 32px;
    }

    .pop_list li {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 20px;
        color: var(--text-muted);
        font-size: 17px;
        font-weight: 500;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.6);
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .pop_list li:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: translateX(8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .pop_list li::before {
        content: '✨';
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    }

    .gif-img {
        text-align: center;
        position: relative;
    }

    .gif-img img,
    .gif-img iframe {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
        position: relative;
        z-index: 2;
    }

    .gif-img:hover img,
    .gif-img:hover iframe {
        transform: scale(1.05) rotateY(5deg);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    }

    .gif-img::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: -20px;
        bottom: -20px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(245, 158, 11, 0.1));
        border-radius: 30px;
        z-index: 1;
        animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.7;
        }

        50% {
            transform: scale(1.05);
            opacity: 1;
        }
    }

    /* Section 3 & 4 Column Spacing */
    .flex-sec {
        gap: 80px;
    }

    .flex-sec .t-heading {
        padding-right: 40px;
    }

    .flex-sec .gif-img {
        padding-left: 40px;
    }

    /* Section 4 Specific Styles */
    .flex-sec.mrgn_btm {
        margin-bottom: 0;
    }

    .flex-sec.mrgn_btm .gif-img iframe {
        width: 100%;
        max-width: 540px;
        height: 250px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
        aspect-ratio: 1080/1920;
    }

    .flex-sec.mrgn_btm .gif-img:hover iframe {
        transform: scale(1.02);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    }

    /* Section 5 - Service Cards - Brand-Specific Customization */
    .advertisers-service-sec {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
        overflow: hidden;
    }

    .advertisers-service-sec::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23cbd5e1" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.6;
    }

    .advertisers-service-sec h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-dark);
        position: relative;
        z-index: 1;
    }

    .advertisers-service-sec h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 42px;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 2px;
    }

    .advertisers-service-sec .subtitle {
        text-align: center;
        font-size: 18px;
        color: var(--text-muted);
        margin: 0 0 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
    }

    .box-grid {
        position: relative;
        z-index: 1;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 50px 35px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

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

    .service-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 1);
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 32px;
        color: white;
        transition: all 0.3s ease;
        position: relative;
    }

    .icon-wrapper::after {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 50%;
        z-index: -1;
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

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

    .service-card:hover .icon-wrapper::after {
        opacity: 0.6;
    }

    .service-card h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 16px;
        color: var(--text-dark);
        line-height: 1.3;
        position: relative;
    }

    .service-card p {
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
        font-size: 16px;
        position: relative;
    }

    .card-content {
        position: relative;
        z-index: 1;
    }

    .card-content h3 {
        margin-bottom: 16px;
    }

    .card-content p {
        margin-bottom: 0;
    }


    /* Additional enhancements for better visual appeal */
    .service-card:nth-child(odd) .icon-wrapper {
        background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    }

    .service-card:nth-child(even) .icon-wrapper {
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    }

    .service-card:nth-child(3n) .icon-wrapper {
        background: linear-gradient(135deg, var(--accent) 0%, #10b981 100%);
    }

    /* Smooth scroll behavior for the section */
    html {
        scroll-behavior: smooth;
    }

    /* Animation for cards on page load */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

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

    .service-card {
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .service-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .service-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .service-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .service-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .service-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .service-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    /* Section 6 - Testimonials */
    .testimonials-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        position: relative;
        overflow: hidden;
    }

    .testimonials-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="%23e2e8f0" opacity="0.4"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        opacity: 0.6;
    }

    .testimonials-header {
        position: relative;
        z-index: 1;
    }

    .testimonials-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin: 0 0 20px;
        color: var(--text-dark);
        background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .testimonials-header .subtitle {
        font-size: 18px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    .testimonials-carousel {
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 1;
    }

    .testimonials-carousel .owl-stage {
        padding: 30px 0;
        display: flex;
        align-items: stretch;
    }

    .testimonials-carousel .owl-item {
        padding: 0 20px;
        height: auto;
    }

    .testimonials-carousel .owl-item.active {
        transform: scale(1.02);
        transition: transform 0.3s ease;
    }

    /* Modern carousel container styling */
    .testimonials-carousel {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(248, 250, 252, 0.1) 100%);
        border-radius: 25px;
        padding: 20px 0;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* View More Button */
    .view-more-btn {
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 15px;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }

    .view-more-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    }

    /* Testimonial Popup Modal */
    .testimonial-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .testimonial-popup.show {
        display: flex !important;
        opacity: 1 !important;
    }

    .testimonial-popup.show {
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
    }

    .popup-content {
        background: white;
        border-radius: 25px;
        max-width: 600px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        transform: scale(0.7);
        transition: transform 0.3s ease;
        box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    }

    .testimonial-popup.show .popup-content {
        transform: scale(1);
    }

    .popup-header {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 30px 30px 20px;
        border-bottom: 1px solid var(--border);
        position: relative;
    }

    .popup-avatar {
        flex-shrink: 0;
    }

    .popup-avatar .avatar-placeholder {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
    }

    .popup-customer-info {
        flex: 1;
    }

    .popup-customer-name {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 8px;
        color: var(--text-dark);
    }

    .popup-customer-title {
        font-size: 16px;
        color: var(--text-muted);
        margin: 0 0 10px;
        font-weight: 500;
    }

    .popup-rating-stars {
        color: var(--accent);
        font-size: 16px;
    }

    .popup-close {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--bg-subtle);
        border: none;
        border-radius: 50%;
        color: var(--text-muted);
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-close:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }

    .popup-body {
        padding: 30px;
    }

    .popup-testimonial-content {
        font-size: 18px;
        line-height: 1.7;
        color: var(--text-dark);
        margin: 0;
        font-style: italic;
        position: relative;
        padding-left: 25px;
    }

    .popup-testimonial-content::before {
        content: '"';
        font-size: 60px;
        color: var(--primary);
        position: absolute;
        left: -15px;
        top: -20px;
        font-family: serif;
        opacity: 0.3;
    }

    .popup-footer {
        padding: 20px 30px 30px;
        text-align: right;
        border-top: 1px solid var(--border);
    }

    .popup-review-date {
        font-size: 14px;
        color: var(--text-muted);
        font-weight: 500;
    }


    /* Owl Carousel Customization */
    .testimonials-carousel .owl-nav {
        position: absolute;
        top: 40%;
        transform: translateY(-50%);
        width: 100%;
        pointer-events: none;
    }

    .testimonials-carousel .owl-prev,
    .testimonials-carousel .owl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 50%;
        color: white;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: auto;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .testimonials-carousel .owl-prev {
        left: -25px;
    }

    .testimonials-carousel .owl-next {
        right: -25px;
    }

    .testimonials-carousel .owl-prev:hover,
    .testimonials-carousel .owl-next:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .testimonials-carousel .owl-dots {
        text-align: center;
        margin-top: 40px;
    }

    .testimonials-carousel .owl-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--border);
        margin: 0 6px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        cursor: pointer;
    }

    .testimonials-carousel .owl-dot::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .testimonials-carousel .owl-dot:hover::before {
        opacity: 0.3;
    }

    .testimonials-carousel .owl-dot.active {
        background: var(--primary);
        transform: scale(1.3);
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }

    .testimonials-carousel .owl-dot.active::before {
        opacity: 0.2;
    }

    .testimonial-card {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 28px 24px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        position: relative;
        overflow: visible;
        min-height: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        isolation: isolate;
    }

    .testimonial-card > * {
        position: relative;
        z-index: 1;
    }

    .testimonial-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        z-index: 2;
        pointer-events: none;
    }

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

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
        background: rgba(255, 255, 255, 1);
        border-color: rgba(196, 122, 26, 0.25);
    }

    .testimonial-card:hover .customer-avatar {
        transform: scale(1.1);
    }

    .testimonial-card:hover .rating-stars i {
        animation: starPulse 0.6s ease-in-out;
    }

    .testimonial-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }

    .customer-avatar {
        flex-shrink: 0;
        transition: transform 0.3s ease;
    }

    @keyframes starPulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.3);
        }
    }

    .avatar-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--primary);
    }

    .avatar-placeholder {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
    }

    .customer-info {
        flex: 1;
        text-align: left;
    }

    .customer-name {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 5px;
        color: var(--text-dark);
    }

    .customer-title {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0 0 8px;
        font-weight: 500;
    }

    .rating-stars {
        color: var(--accent);
        font-size: 14px;
    }

    .rating-stars i {
        margin-right: 2px;
    }

    .testimonial-content {
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
        flex: 1 1 auto;
        min-height: 0;
    }

    .testimonial-content blockquote {
        font-size: 16px;
        line-height: 1.65;
        color: var(--text-dark);
        margin: 0;
        font-style: italic;
        position: relative;
        padding: 4px 8px 8px 14px;
    }

    .testimonial-content blockquote::before {
        content: '"';
        font-size: 1.75rem;
        color: var(--primary);
        position: absolute;
        left: 0;
        top: -4px;
        font-family: serif;
        opacity: 0.25;
        line-height: 1;
    }

    .testimonial-footer {
        text-align: right;
    }

    .review-date {
        font-size: 12px;
        color: var(--text-muted);
        font-weight: 500;
    }


    /* Carousel loading animation */
    .testimonials-carousel.owl-loaded {
        animation: carouselLoaded 0.6s ease-out;
    }

    @keyframes carouselLoaded {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

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

    /* Hover effects for rating stars */
    .rating-stars i {
        transition: all 0.3s ease;
    }

    .testimonial-card:hover .rating-stars i {
        transform: scale(1.2);
        color: #fbbf24;
    }

    /* Closing quote — subtle (avoid huge decorative glyphs masking layout) */
    .testimonial-content blockquote::after {
        content: '"';
        font-size: 1.75rem;
        color: var(--primary);
        position: absolute;
        right: 0;
        bottom: 0;
        font-family: serif;
        opacity: 0.2;
        line-height: 1;
    }

    /* Section 7 — Pricing (matches home.php / hwx-home.css, scoped to this template) */
    .hwx-catc-pro-wrap .pricing-section {
        padding: clamp(3.5rem, 7vw, 6.25rem) 0;
        background: #ffffff;
        position: relative;
    }

    .hwx-catc-pro-wrap .pricing-section .section-header {
        text-align: center;
        margin-bottom: clamp(2rem, 4vw, 3.75rem);
        max-width: 52rem;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1rem;
    }

    .hwx-catc-pro-wrap .pricing-section .section-header h2 {
        font-family: var(--hwx-font-display, "Cormorant Garamond", Georgia, serif);
        font-size: clamp(1.75rem, 3vw, 2.35rem);
        font-weight: 600;
        color: #1e3a8a;
        margin: 0 0 0.75rem;
        letter-spacing: -0.02em;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.125rem);
        color: #64748b;
        line-height: 1.65;
        margin: 0;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: clamp(1.25rem, 2.5vw, 2rem);
        margin-top: clamp(1.5rem, 3vw, 2.5rem);
        align-items: stretch;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-card {
        background: #fff;
        border: 2px solid #e5e7eb;
        border-radius: 15px;
        padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2vw, 1.75rem);
        text-align: center;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: #3b82f6;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-card.featured {
        border-color: #3b82f6;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        transform: scale(1.03);
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-card.featured:hover {
        transform: scale(1.03) translateY(-8px);
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-badge {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: #3b82f6;
        color: #fff;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        z-index: 2;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-header h3 {
        font-size: 1.5rem;
        margin: 0 0 1.25rem;
        color: #1e3a8a;
        font-weight: 600;
    }

    .hwx-catc-pro-wrap .pricing-section .price {
        margin-bottom: 1rem;
    }

    .hwx-catc-pro-wrap .pricing-section .currency {
        font-size: 1.5rem;
        color: #666;
        vertical-align: top;
    }

    .hwx-catc-pro-wrap .pricing-section .amount {
        font-size: clamp(2.25rem, 4vw, 3rem);
        font-weight: 700;
        color: #1e3a8a;
    }

    .hwx-catc-pro-wrap .pricing-section .original-price {
        margin-top: 0.35rem;
    }

    .hwx-catc-pro-wrap .pricing-section .original-price del {
        color: #64748b;
        font-size: 1rem;
        opacity: 0.85;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-header p {
        color: #666;
        margin: 0 0 1.5rem;
        font-size: 0.95rem;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-features {
        margin-bottom: 1.5rem;
        flex: 1;
        text-align: left;
    }

    .hwx-catc-pro-wrap .pricing-section .feature {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .hwx-catc-pro-wrap .pricing-section .feature:last-child {
        margin-bottom: 0;
    }

    .hwx-catc-pro-wrap .pricing-section .feature i {
        color: #3b82f6;
        font-size: 16px;
        flex-shrink: 0;
    }

    .hwx-catc-pro-wrap .pricing-section .feature span {
        color: #333;
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .hwx-catc-pro-wrap .pricing-section .pricing-card .edd_purchase_submit_wrapper,
    .hwx-catc-pro-wrap .pricing-section .pricing-card .button,
    .hwx-catc-pro-wrap .pricing-section .pricing-card .edd-submit,
    .hwx-catc-pro-wrap .pricing-section .pricing-card a.edd-add-to-cart {
        margin-top: auto;
    }

    @media (max-width: 900px) {
        .hwx-catc-pro-wrap .pricing-section .pricing-card.featured {
            transform: none;
        }
        .hwx-catc-pro-wrap .pricing-section .pricing-card.featured:hover {
            transform: translateY(-8px);
        }
    }

    /* Section 8 — FAQ (simple flat; CATC landing — overrides global purple accordion) */
    .hwx-catc-pro-wrap .acc-sec {
        background: #f8fafc;
        padding: clamp(2.5rem, 5vw, 3.75rem) 0;
        position: relative;
        overflow: hidden;
    }

    .hwx-catc-pro-wrap .acc-sec .heading h2 {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 700;
        margin: 0 0 1.5rem;
        color: #0f172a;
        text-shadow: none;
        text-align: center;
    }

    .hwx-catc-pro-wrap .acc-sec .heading h2::after {
        display: none;
    }

    .hwx-catc-pro-wrap .vrsn_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(1.5rem, 3vw, 2.5rem);
        margin-top: 0;
        align-items: start;
    }

    .hwx-catc-pro-wrap .accordion-flex {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hwx-catc-pro-wrap .hwx-catc-faq__item {
        border: 1px solid #e2e8f0;
        border-radius: 10px;
        background: #fff;
        overflow: hidden;
    }

    .hwx-catc-pro-wrap .acc-sec .accordion {
        background: #fff !important;
        border: none !important;
        border-radius: 0;
        padding: 0.875rem 2.5rem 0.875rem 1rem;
        text-align: left;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #0f172a !important;
        cursor: pointer;
        width: 100%;
        position: relative;
        overflow: visible;
        backdrop-filter: none;
        box-shadow: none;
        transform: none !important;
        transition: background 0.15s ease;
        outline: none;
        margin: 0;
    }

    /* Plus/minus lines — slate so visible on white (custom-style used white on purple) */
    .hwx-catc-pro-wrap .acc-sec .accordion::after,
    .hwx-catc-pro-wrap .acc-sec .accordion::before {
        background-color: #64748b !important;
    }

    .hwx-catc-pro-wrap .acc-sec .accordion:hover {
        background: #f8fafc !important;
        color: #0f172a !important;
        border-color: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }

    /* Open state: same flat look as closed — no purple gradient */
    .hwx-catc-pro-wrap .acc-sec .accordion.active {
        background: #f1f5f9 !important;
        color: #0f172a !important;
        border-color: transparent !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .hwx-catc-pro-wrap .acc-sec .panel {
        padding: 0 1rem;
        background: #fff !important;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .panel p {
        margin: 0;
        color: #64748b;
        line-height: 1.65;
        font-size: 0.9375rem;
        font-weight: 400;
    }

    .hwx-catc-pro-wrap .acc-sec .panel .hwx-catc-faq__answer {
        color: #64748b;
        line-height: 1.65;
        font-size: 0.9375rem;
        font-weight: 400;
    }

    .hwx-catc-pro-wrap .acc-sec .panel .hwx-catc-faq__answer p {
        margin: 0 0 0.65rem;
    }

    .hwx-catc-pro-wrap .acc-sec .panel .hwx-catc-faq__answer p:first-child {
        padding-top: 0.35rem;
    }

    .hwx-catc-pro-wrap .acc-sec .panel .hwx-catc-faq__answer p:last-child {
        padding-bottom: 1rem;
        margin-bottom: 0;
    }

    .hwx-catc-pro-wrap .acc-sec .panel .hwx-catc-faq__answer a {
        color: #b45309;
        text-decoration: underline;
        text-underline-offset: 2px;
    }

    .hwx-catc-pro-wrap .acc-sec .panel .hwx-catc-faq__answer a:hover {
        color: #92400e;
    }

    .acc-vrsn {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
        padding: 40px;
        border-radius: 25px;
        border: 1px solid rgba(102, 126, 234, 0.1);
        backdrop-filter: blur(10px);
    }

    .entry-meta h2 {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 25px;
        color: var(--text-dark);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        position: relative;
    }

    .entry-meta h2::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        border-radius: 2px;
    }

    .entry-meta ul {
        list-style: none;
        padding: 0;
    }

    .entry-meta li {
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        color: var(--text-muted);
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .entry-meta li:hover {
        color: var(--text-dark);
        padding-left: 10px;
    }

    .entry-meta li:last-child {
        border-bottom: none;
    }



    .plugin-ratings h2 {
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 20px;
        color: var(--text-dark);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }


    .wporg-ratings {
        font-size: 28px;
        margin-bottom: 15px;
        display: block;
    }

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

    .counter-container {
        transition: all 0.3s ease;
    }

    .counter-container:hover {
        transform: translateX(5px);
    }

    .counter-container a {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--text-muted);
        padding: 10px 0;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .counter-container a:hover {
        color: var(--text-dark);
    }

    .counter-label {
        min-width: 60px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .counter-back {
        flex: 1;
        height: 8px;
        background: rgba(226, 232, 240, 0.8);
        border-radius: 4px;
        overflow: hidden;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .counter-bar {
        height: 100%;
        background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    }

    .counter-count {
        min-width: 30px;
        text-align: right;
        font-weight: 700;
        color: var(--text-dark);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Section 9 - Support */
    .sppt_sec {
        padding: 80px 0;
        background: var(--bg-light);
        text-align: center;
    }

    .sp_sec h4 {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 16px;
        color: var(--text-dark);
    }

    .sp_sec hr {
        width: 60px;
        height: 3px;
        background: var(--primary);
        border: none;
        margin: 0 auto 24px;
        border-radius: 2px;
    }

    .p_sppt {
        font-size: 18px;
        color: var(--text-muted);
        margin: 0 auto 24px;
        max-width: 500px;
        line-height: 1.5;
    }

    /* Section 10 - Screenshots (grid + Chocolat lightbox) */
    .screenshots_sec {
        padding: clamp(3rem, 6vw, 5rem) 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e8e4dc 100%);
        position: relative;
        overflow: hidden;
    }

    .screenshots_sec .screenshots_heading {
        margin-bottom: clamp(2rem, 4vw, 3rem);
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .screenshots_sec .screenshots_heading h2 {
        font-size: clamp(1.75rem, 3vw, 2.5rem);
        font-weight: 700;
        margin: 0 0 12px;
        color: #1e293b;
    }

    .screenshots_grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
        gap: clamp(1rem, 2.5vw, 1.5rem);
        margin: 0 auto;
        padding: 0;
        max-width: 1300px;
    }

    .screenshots_grid .screenshot_item {
        margin: 0;
    }

    .screenshot_item a.chocolat-image {
        display: block;
        position: relative;
        text-decoration: none;
        color: inherit;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        outline: none;
    }

    .screenshot_item a.chocolat-image:focus-visible {
        box-shadow: 0 0 0 3px #c47a1a, 0 12px 40px rgba(15, 23, 42, 0.12);
    }

    .screenshot_item a.chocolat-image:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    }

    .screenshot_item__frame {
        display: block;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #f1f5f9;
    }

    .screenshot_item__frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: 0;
        box-shadow: none;
        vertical-align: middle;
    }

    .screenshot_item__zoom {
        position: absolute;
        right: 12px;
        bottom: 12px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(15, 23, 42, 0.75);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        pointer-events: none;
        transition: transform 0.25s ease, background 0.25s ease;
    }

    .screenshot_item a.chocolat-image:hover .screenshot_item__zoom {
        transform: scale(1.08);
        background: rgba(196, 122, 26, 0.95);
    }

    @media (max-width: 768px) {
        .screenshots_grid {
            grid-template-columns: 1fr;
        }
    }

    /* Chocolat layout: global rules in hwx-chrome.css */

/* --------------------------------------------------------------------------
   HWX premium editorial layer (navy + gold, luxury typography)
   Loads after base rules — scoped to product landing wrapper
   -------------------------------------------------------------------------- */
.hwx-catc-pro-wrap {
	--catc-ink: #0f172a;
	--catc-gold: #c47a1a;
	--catc-gold-soft: #e8c088;
	--catc-surface: #faf9f7;
	/* Match home.php section rhythm (see hwx-home.css .hwx-home-page) */
	--hwx-sec-y: clamp(2.5rem, 4.5vw, 3.75rem);
	--hwx-stack: clamp(1.25rem, 2.5vw, 2rem);
	/* Hero (plugin-intro–style rhythm on home) */
	--hwx-hero-y: clamp(2.75rem, 5vw, 4rem);
	--hwx-hero-gap: clamp(1.75rem, 3.5vw, 5rem);
}

@media (max-width: 768px) {
	.hwx-catc-pro-wrap {
		--hwx-sec-y: clamp(2rem, 5vw, 2.75rem);
		--hwx-stack: clamp(1rem, 3vw, 1.5rem);
		--hwx-hero-y: clamp(2.25rem, 6vw, 3rem);
		--hwx-hero-gap: clamp(1.5rem, 4vw, 2.5rem);
	}
}

.hwx-catc-pro-wrap .maincustom-sec {
	background: linear-gradient(165deg, var(--catc-surface) 0%, #f1efe9 42%, #ffffff 100%);
	padding-block: var(--hwx-hero-y);
	padding-inline: 0;
}

.hwx-catc-pro-wrap .maincustom-sec .sec_p {
	gap: var(--hwx-hero-gap);
	align-items: center;
}

.hwx-catc-pro-wrap .maincustom-sec::before {
	opacity: 0.35;
}

.hwx-catc-pro-wrap .text h1,
.hwx-catc-pro-wrap .text h2 {
	font-family: var(--hwx-font-display, "Cormorant Garamond", Georgia, "Times New Roman", serif);
	font-weight: 600;
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: var(--catc-ink);
}

.hwx-catc-pro-wrap .text h1 .highlight,
.hwx-catc-pro-wrap .text h2 .highlight {
	background: linear-gradient(135deg, #8b5a12 0%, var(--catc-gold) 45%, var(--catc-gold-soft) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Home-style accent dots (plugin intro) */
.hwx-catc-pro-wrap .hwx-catc-hero-accent {
	display: flex;
	gap: 8px;
	align-items: center;
	margin: 0 0 10px;
}

.hwx-catc-pro-wrap .hwx-catc-hero-accent span {
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	flex-shrink: 0;
}

.hwx-catc-pro-wrap .hwx-catc-hero-accent .dot-a {
	background: linear-gradient(135deg, #06b6d4, #0891b2);
	box-shadow: 0 2px 8px rgba(6, 182, 212, 0.35);
}

.hwx-catc-pro-wrap .hwx-catc-hero-accent .dot-b {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
	box-shadow: 0 2px 8px rgba(59, 130, 246, 0.35);
}

.hwx-catc-pro-wrap .hwx-catc-hero-accent .dot-c {
	background: linear-gradient(135deg, #8b5cf6, #7c3aed);
	box-shadow: 0 2px 8px rgba(139, 92, 246, 0.35);
}

.hwx-catc-pro-wrap .text .subtitle {
	color: var(--catc-gold);
	font-size: clamp(0.75rem, 1.5vw, 0.875rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hwx-catc-pro-wrap .text p,
.hwx-catc-pro-wrap .text .features-list li {
	color: #475569;
}

.hwx-catc-pro-wrap .text .features-list li::before {
	background: linear-gradient(145deg, var(--catc-ink), #334155);
}

.hwx-catc-pro-wrap .maincustom-sec .flex-btn {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(0.65rem, 1.5vw, 1rem);
	align-items: center;
}

.hwx-catc-pro-wrap .b_btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border-radius: 999px;
	padding: 0.9rem 1.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	background: linear-gradient(135deg, #1a2744 0%, #2d3f5c 100%);
	border: none;
	box-shadow: 0 6px 24px rgba(26, 39, 68, 0.28);
}

.hwx-catc-pro-wrap .b_btn i {
	font-size: 1em;
	line-height: 1;
	opacity: 0.95;
}

.hwx-catc-pro-wrap .b_btn:hover {
	background: linear-gradient(135deg, #0f172a 0%, #1a2744 100%);
	transform: translateY(-2px);
	box-shadow: 0 10px 32px rgba(15, 23, 42, 0.35);
}

.hwx-catc-pro-wrap .b_btn.secondary {
	background: transparent;
	color: var(--catc-gold);
	border: 2px solid rgba(196, 122, 26, 0.45);
	box-shadow: none;
}

.hwx-catc-pro-wrap .b_btn.secondary:hover {
	background: rgba(196, 122, 26, 0.08);
	color: var(--catc-ink);
	border-color: var(--catc-gold);
}

/* Right column: balanced panel (home intro-visual feel) */
.hwx-catc-pro-wrap .maincustom-sec .sec-1 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: min(360px, 52vh);
	padding: clamp(1rem, 2.5vw, 1.75rem);
	border-radius: 1.25rem;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 239, 233, 0.55) 100%);
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.07);
}

.hwx-catc-pro-wrap .hero-image img {
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
	border-radius: 1rem;
}

@media (max-width: 768px) {
	.hwx-catc-pro-wrap .maincustom-sec .sec-1 {
		min-height: 0;
		margin-top: 0.5rem;
	}
}

/* Testimonials: readable subtitle + centered header (fixes full-width <p>) */
.hwx-catc-pro-wrap .testimonials-header {
	width: 100%;
	max-width: 40rem;
	margin-inline: auto;
	margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
	padding-inline: clamp(0.5rem, 2vw, 1rem);
	text-align: center;
}

.hwx-catc-pro-wrap .testimonials-header h2 {
	margin-left: auto;
	margin-right: auto;
}

.hwx-catc-pro-wrap .testimonials-header .subtitle,
.hwx-catc-pro-wrap .testimonials-header > p {
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	display: block;
}

.hwx-catc-pro-wrap .features-sec,
.hwx-catc-pro-wrap .advertisers-service-sec,
.hwx-catc-pro-wrap .screenshots_sec,
.hwx-catc-pro-wrap .pricing-section {
	content-visibility: auto;
	contain-intrinsic-size: auto 420px;
}

@media (prefers-reduced-motion: reduce) {
	.hwx-catc-pro-wrap .hero-image::after {
		animation: none !important;
	}
}