/* ==========================================================================
   Elementor Mobile-First Ads Hero Widget Styling (Funky Neo-Brutalist Redesign)
   ========================================================================== */

/* Scoped variables and resets inside the widget class */
.ads-elementor-hero-wrapper {
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 40px 12px 30px; /* Reduced mobile wrapper padding to prevent squishing */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: background-color 0.3s ease;
    
    /* Neo-Brutalist Design Tokens */
    --ads-neo-border-width: 3px;
    --ads-neo-border-color: #000000;
    --ads-neo-border: var(--ads-neo-border-width) solid var(--ads-neo-border-color);
    --ads-neo-shadow-offset: 7px;
    --ads-neo-shadow-color: #000000;
    --ads-neo-shadow: var(--ads-neo-shadow-offset) var(--ads-neo-shadow-offset) 0px var(--ads-neo-shadow-color);
}

@media screen and (min-width: 768px) {
    .ads-elementor-hero-wrapper {
        padding: 80px 24px 60px; /* Default desktop padding */
    }
}

.ads-elementor-hero-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

/* --- Theme light mode (Cream/Beige Neo-Brutalist) --- */
.ads-elementor-hero-wrapper.theme-light {
    background-color: #f4f3ef; /* Warm Cream */
    --ads-card-bg: #ffffff;
    --ads-text-color: #000000;
    --ads-subtext-color: #333333;
    --ads-backing-color-1: #ffd200; /* Yellow */
    --ads-backing-color-2: #3b82f6; /* Blue */
    --ads-backing-color-3: #ec4899; /* Pink */
}

.ads-elementor-hero-wrapper.theme-light.has-grid-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05) 1.5px, transparent 1.5px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    background-position: center top;
}

/* --- Theme dark mode (Dark/Yellow/Black Neo-Brutalist) --- */
.ads-elementor-hero-wrapper.theme-dark {
    background-color: #0c0c0e; /* Deep Charcoal Black */
    --ads-card-bg: #161619; /* Lighter container card */
    --ads-text-color: #ffffff;
    --ads-subtext-color: #a1a1aa;
    --ads-backing-color-1: #ffd200; /* Yellow */
    --ads-backing-color-2: #2563eb; /* Darker Blue */
    --ads-backing-color-3: #db2777; /* Darker Pink */
}

.ads-elementor-hero-wrapper.theme-dark.has-grid-background {
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1.5px, transparent 1.5px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    background-position: center top;
}

/* Device aspect limits */
.ads-hero-device {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 15px 30px;
}

@media screen and (min-width: 768px) {
    .ads-hero-device {
        max-width: var(--ads-desktop-width, 1100px); /* Increased width threshold */
        padding: 30px 30px 40px;
    }
}

/* Container stacked paper structure */
.ads-hero-card-container {
    position: relative;
    width: 100%;
}

/* Main content card styling */
.ads-hero-card {
    background-color: var(--ads-card-bg);
    border: var(--ads-neo-border);
    box-shadow: var(--ads-neo-shadow);
    border-radius: 16px;
    padding: 24px 16px; /* Tight padding on mobile for maximum text room */
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .ads-hero-card {
        padding: 50px 40px;
    }
}

/* Decorative Backing Pattern Elements */
.ads-hero-backing-shape {
    position: absolute;
    border: var(--ads-neo-border);
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.3s ease;
}

/* Stripe Pattern Shape - Peeking Top-Left */
.ads-hero-backing-shape.shape-stripes {
    top: -12px;
    left: -12px;
    width: calc(100% + 24px);
    height: 120px;
    background-color: var(--ads-backing-color-1);
    background-image: repeating-linear-gradient(
        -45deg,
        #000000,
        #000000 8px,
        transparent 8px,
        transparent 16px
    );
    background-size: 24px 24px;
    transform: rotate(-1.5deg);
}

/* Polka Dot Shape - Peeking Top-Right */
.ads-hero-backing-shape.shape-dots-blue {
    top: -10px;
    right: -10px;
    width: 120px;
    height: calc(100% + 20px);
    background-color: var(--ads-backing-color-2);
    background-image: radial-gradient(#000000 20%, transparent 20%),
                      radial-gradient(#000000 20%, transparent 20%);
    background-size: 14px 14px;
    background-position: 0 0, 7px 7px;
    transform: rotate(1deg);
}

/* Polka Dot Shape - Peeking Bottom-Right */
.ads-hero-backing-shape.shape-dots-yellow {
    bottom: -14px;
    right: -14px;
    width: calc(100% - 60px);
    height: 180px;
    background-color: var(--ads-backing-color-1);
    background-image: radial-gradient(rgba(0,0,0,0.85) 18%, transparent 18%),
                      radial-gradient(rgba(0,0,0,0.85) 18%, transparent 18%);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    transform: rotate(0.8deg);
}

/* Pink Peg - Bottom Left */
.ads-hero-backing-shape.shape-pink-peg {
    bottom: -20px;
    left: 20px;
    width: 60px;
    height: 90px;
    background-color: var(--ads-backing-color-3);
    transform: rotate(-8deg);
}

/* Hide some backing elements on small mobiles to avoid rendering clutter */
@media screen and (max-width: 480px) {
    .ads-hero-backing-shape.shape-stripes {
        top: -8px;
        left: -8px;
        width: calc(100% + 16px);
        height: 80px;
    }
    .ads-hero-backing-shape.shape-dots-blue {
        display: none;
    }
    .ads-hero-backing-shape.shape-dots-yellow {
        bottom: -8px;
        right: -8px;
        width: calc(100% + 16px);
        height: 100px;
    }
    .ads-hero-backing-shape.shape-pink-peg {
        left: 5px;
        bottom: -12px;
        width: 40px;
        height: 60px;
    }
}

/* 1. Trusted Sticker Badge */
.ads-hero-trust-box {
    display: inline-block;
    padding: 10px 22px;
    background-color: #111827 !important; /* High contrast dark background */
    border: 3px solid #e11d48 !important; /* Premium pinkish-red border to frame the badge */
    box-shadow: 4px 4px 0px #000000;
    margin-bottom: 24px;
    border-radius: 6px;
    position: relative;
    transform: rotate(-2deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
    max-width: 95%;
}

.ads-hero-trust-box:hover {
    transform: rotate(1deg) scale(1.05);
    border-color: #f43f5e !important;
}

.ads-trust-floating {
    position: absolute;
    top: -12px;
    left: 12px;
    background-color: #e11d48 !important; /* Vibrant pinkish-red badge */
    color: #ffffff !important;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    line-height: 1.2;
    border: 1px solid #e11d48;
}

.ads-shark-logo {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    fill: #ffd200; /* Match the gold/yellow text color */
}

.ads-trust-main {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.2;
    color: #ffd200 !important; /* Vibrant yellow text */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ads-trust-main::before {
    content: none !important;
}

.ads-trust-main::after {
    content: " ★";
    color: #ffd200;
    margin-left: 4px;
}

.ads-trust-main.has-logo-image::after {
    content: none !important;
}

.ads-trust-logo-img {
    height: 26px;
    max-height: 26px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.45));
}

/* 2. Sub-tagline */
.ads-hero-subtagline {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ads-primary-color, #ffd200);
    margin-bottom: 24px;
    letter-spacing: -0.2px;
    text-transform: uppercase;
}

.theme-light .ads-hero-subtagline {
    color: #000000;
    background-color: var(--ads-primary-color, #ffd200);
    padding: 4px 10px;
    border: 2px solid #000000;
    box-shadow: 2px 2px 0px #000000;
    border-radius: 4px;
    transform: rotate(1deg);
    display: inline-block;
}

@media screen and (max-width: 480px) {
    .ads-hero-subtagline {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
}

/* 3. Headline */
.ads-hero-headline {
    font-family: var(--font-heading);
    font-size: 2.7rem;
    line-height: 1.15;
    color: var(--ads-text-color);
    margin-bottom: 24px;
    letter-spacing: -0.8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width: 600px) {
    .ads-hero-headline {
        font-size: 1.95rem;
    }
}

@media screen and (max-width: 400px) {
    .ads-hero-headline {
        font-size: 1.65rem;
        letter-spacing: -0.5px;
    }
    .ads-hero-highlight {
        padding: 4px 12px;
    }
    .ads-hero-subheadline {
        font-size: 0.9rem;
        line-height: 1.45;
        margin-bottom: 20px;
        max-width: 100%;
    }
}

.ads-hl-line-1 {
    display: block;
    font-weight: 900;
    text-transform: uppercase;
}

/* High contrast neo-brutalist highlight container */
.ads-hero-highlight {
    display: inline-block;
    font-weight: 900;
    background-color: var(--ads-primary-color, #ffd200);
    color: #000000 !important;
    text-transform: uppercase;
    padding: 4px 16px;
    border: var(--ads-neo-border);
    box-shadow: 4px 4px 0px #000000;
    transform: rotate(-0.5deg);
    border-radius: 4px;
    line-height: 1.2;
}

/* 4. Subheadline Details */
.ads-hero-subheadline {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 90%;
    color: var(--ads-subtext-color);
    font-weight: 500;
}

/* 5. Squiggly Divider Decoration */
.ads-hero-squiggle-container {
    width: 100%;
    max-width: 280px;
    height: 24px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ads-hero-squiggle-divider {
    width: 100%;
    height: 16px;
    stroke: var(--ads-text-color);
    stroke-width: 4px;
    stroke-linecap: round;
    fill: none;
}

/* 6. CTA Button Section */
.ads-hero-cta-button-container {
    width: 100%;
    max-width: 700px;
    margin-bottom: 12px;
}

/* Pulsing green dot animation for live urgency */
@keyframes ads-pulse-green {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.ads-hero-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background-color: #e11d48 !important; /* Force vibrant pinkish-red background */
    border: var(--ads-neo-border-width, 3px) solid var(--ads-neo-border-color, #000000);
    box-shadow: var(--ads-neo-shadow-offset, 7px) var(--ads-neo-shadow-offset, 7px) 0px var(--ads-neo-shadow-color, #000000);
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transform: translate(0, 0);
    transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.15s cubic-bezier(0.2, 0.8, 0.2, 1),
                background-color 0.2s ease;
}

/* Pulsing live indicator dot */
.ads-hero-cta-btn::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    border: 1.5px solid #000000;
    animation: ads-pulse-green 1.6s infinite ease-in-out;
}

.ads-hero-cta-btn:hover {
    transform: translate(-3px, -3px);
    box-shadow: calc(var(--ads-neo-shadow-offset, 7px) + 3px) calc(var(--ads-neo-shadow-offset, 7px) + 3px) 0px var(--ads-neo-shadow-color, #000000);
    background-color: #f43f5e !important; /* Lighter rose red on hover to pop */
}

.ads-hero-cta-btn:active {
    transform: translate(3px, 3px);
    box-shadow: calc(var(--ads-neo-shadow-offset, 7px) - 3px) calc(var(--ads-neo-shadow-offset, 7px) - 3px) 0px var(--ads-neo-shadow-color, #000000);
}

.ads-btn-label {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff !important; /* High contrast white text to stand out against pinkish-red */
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.2px;
}

@media screen and (max-width: 480px) {
    .ads-btn-label {
        font-size: 1.1rem;
    }
}

/* 7. Button Subtext - Scarcity Block (De-styled to prevent button mimicry) */
.ads-btn-subtext {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    color: #4b5563 !important; /* Muted dark grey for contrast in light theme */
    margin-top: 16px;
    margin-bottom: 24px;
    padding: 0 !important;
    transition: none !important;
}

.theme-dark .ads-btn-subtext {
    color: #9ca3af !important; /* Muted silver/grey in dark theme */
}

.ads-scarcity-highlight {
    background-color: #e11d48 !important; /* Clean solid pink badge background */
    color: #ffffff !important;
    padding: 4px 10px !important;
    border-radius: 9999px !important; /* Modern clean rounded pill shape */
    font-weight: 800;
    border: none !important;
    box-shadow: none !important;
    transform: none !important;
    display: inline-block;
    margin-left: 6px;
    font-size: 0.8rem;
}

/* 8. Partners Trust Badges Card */
.ads-hero-partners-card {
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 580px;
    margin: 12px auto 0;
    background-color: var(--ads-card-bg);
    border: var(--ads-neo-border);
    box-shadow: 4px 4px 0px var(--ads-neo-shadow-color);
    z-index: 10;
    position: relative;
    transition: transform 0.2s ease;
}

.ads-hero-partners-card:hover {
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px var(--ads-neo-shadow-color);
}

@media screen and (max-width: 480px) {
    .ads-hero-partners-card {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 18px;
        padding: 12px;
    }
}

.ads-partner-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ads-logo-svg {
    height: 18px;
    width: auto;
    display: block;
}

.ads-partner-label {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ads-text-color);
}

.ads-bold-sub {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ads-text-color);
}

/* Custom wiggle/hover animations for funky details */
.ads-elementor-hero-wrapper.theme-dark .meta-partner svg {
    fill: #3b82f6;
}

.ads-elementor-hero-wrapper.theme-dark .shopify-partner svg {
    fill: #4ade80;
}

/* ==========================================================================
   v2 Image Widget Specific Layout Rules
   ========================================================================== */
.ads-hero-image-wrap {
    width: 100%;
    max-width: var(--ads-img-max-width, 580px); /* Restrict width on desktop to keep the layout compact and clean */
     
    display: block;
    position: relative;
    border: none !important; /* No card border outline */
    border-radius: 0 !important; /* Remove card corners */
    box-shadow: none !important; /* Remove card shadow */
    overflow: visible !important; /* Allow the floating cloud and dashboards to display without clipping boundaries */
    background-color: transparent !important; /* Transparent background */
    transition: transform 0.2s ease;
}

.ads-hero-image-wrap img {
    width: 100%;
    height: auto !important; /* Override forced aspect ratio heights */
    aspect-ratio: auto !important; /* Override any forced aspect ratios to render the image in its natural 1:1 dimensions */
    display: block;
    object-fit: contain !important; /* Force contain to ensure no cropping of head, hands, or the cloud */
    max-height: 520px; /* Limit maximum height on large screens */
    transition: transform 0.3s ease;
}

.ads-hero-image-wrap:hover img {
    transform: scale(1.02);
}

/* Aspect ratio presets */
.ads-hero-image-wrap.aspect-landscape img {
    aspect-ratio: 16/9;
}

.ads-hero-image-wrap.aspect-square img {
    aspect-ratio: 1/1;
}

.ads-hero-image-wrap.aspect-portrait img {
    aspect-ratio: 4/5;
}

.ads-hero-image-wrap.aspect-auto img {
    aspect-ratio: auto;
}

@media screen and (max-width: 480px) {
    .ads-hero-image-wrap {
        margin-bottom: 24px;
        box-shadow: 4px 4px 0px var(--ads-img-shadow-color, #000000);
    }
}

/* ==========================================================================
   Client Brand Logos Showcase Styles
   ========================================================================== */
.ads-brand-showcase {
    margin-top: 35px;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Make Carousel layout full-screen bleeding */
.ads-brand-showcase.layout-carousel {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-right: 0;
}

/* 1. Grid Layout Mode */
.ads-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns on desktop by default */
    gap: 16px;
    width: 100%;
}

.ads-brand-grid-item {
    background-color: var(--ads-card-bg);
    border: var(--ads-neo-border);
    box-shadow: 4px 4px 0px var(--ads-neo-shadow-color);
    border-radius: 8px;
    padding: 16px 12px;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.15s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
}

.ads-brand-grid-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--ads-neo-shadow-color);
}

.ads-brand-grid-item:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ads-neo-shadow-color);
}

/* 2. Carousel (Infinite Marquee) Mode */
.ads-brand-marquee-container {
    overflow: hidden;
    width: 100%;
    border: var(--ads-neo-border);
    border-left: none;
    border-right: none;
    box-shadow: none;
    background-color: var(--ads-card-bg);
    border-radius: 0;
    padding: 16px 0;
    display: flex;
    position: relative;
}

.ads-brand-marquee-track {
    display: flex;
    width: max-content;
    animation: adsMarquee var(--ads-marquee-duration, 20s) linear infinite;
}

.ads-brand-showcase.layout-carousel:hover .ads-brand-marquee-track {
    animation-play-state: paused;
}

.ads-brand-marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    flex-shrink: 0;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.ads-brand-marquee-item:hover {
    transform: scale(1.08);
}

/* Logo Image Styling */
.ads-brand-logo-img {
    max-height: 42px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) opacity(0.8);
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.theme-dark .ads-brand-logo-img {
    filter: grayscale(1) brightness(1.5) opacity(0.85);
}

.ads-brand-grid-item:hover .ads-brand-logo-img,
.ads-brand-marquee-item:hover .ads-brand-logo-img {
    filter: none;
    opacity: 1;
}

/* 3. Text Sticker Fallback Branding */
.ads-brand-text-logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #000000 !important;
    background-color: var(--ads-backing-color-1, #ffd200);
    padding: 5px 12px;
    border: 2px solid #000000;
    box-shadow: 2px 2px 0px #000000;
    border-radius: 4px;
    transform: rotate(-2.5deg);
    white-space: nowrap;
    display: inline-block;
    letter-spacing: -0.2px;
}

.ads-brand-grid-item:nth-child(even) .ads-brand-text-logo,
.ads-brand-marquee-item:nth-child(even) .ads-brand-text-logo {
    transform: rotate(2deg);
    background-color: var(--ads-backing-color-2, #3b82f6);
    color: #ffffff !important;
}

.ads-brand-grid-item:nth-child(3n) .ads-brand-text-logo,
.ads-brand-marquee-item:nth-child(3n) .ads-brand-text-logo {
    transform: rotate(-1deg);
    background-color: var(--ads-backing-color-3, #ec4899);
    color: #ffffff !important;
}

/* 4. Marquee Looping Animation Keyframes */
@keyframes adsMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* 5. Responsive Breakpoints */
@media screen and (max-width: 1024px) {
    .ads-brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .ads-brand-showcase {
        margin-top: 25px;
    }
    .ads-brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .ads-brand-grid-item {
        min-height: 75px;
        padding: 12px 8px;
    }
    .ads-brand-logo-img {
        max-height: 34px;
    }
    .ads-brand-text-logo {
        font-size: 0.95rem;
        padding: 4px 10px;
    }
    .ads-brand-marquee-container {
        padding: 12px 0;
        border-radius: 8px;
    }
    .ads-brand-marquee-item {
        padding: 0 25px;
    }
}

@media screen and (max-width: 480px) {
    .ads-brand-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 10px;
    }
    .ads-brand-grid-item {
        min-height: 68px;
        padding: 10px 6px;
        box-shadow: 3px 3px 0px var(--ads-neo-shadow-color);
    }
    .ads-brand-marquee-container {
        padding: 10px 0;
        box-shadow: 3px 3px 0px var(--ads-neo-shadow-color);
    }
    .ads-brand-logo-img {
        max-height: 28px;
    }
    .ads-brand-text-logo {
        font-size: 0.85rem;
        padding: 3px 8px;
    }
    .ads-brand-marquee-item {
        padding: 0 16px;
    }
}

/* ==========================================================================
   Dashboard Showcase Widget Styles (Clean, Premium Redesign)
   ========================================================================== */

.ads-dashboard-showcase-section {
    margin: 60px auto;
    max-width: var(--ads-desktop-width, 1000px);
    width: 100%;
    padding: 48px 32px;
    box-sizing: border-box;
    background-color: #0c0c0e !important; /* Force dark mode background */
    border-radius: 20px;
    border: 1px solid #1f2937;
    min-height: auto !important; /* Override hero wrapper min-height */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 10px 10px -5px rgba(0, 0, 0, 0.15);
}

.ads-dashboard-showcase-section.has-grid-background {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px) !important;
    background-size: 32px 32px;
    background-position: center top;
}

.ads-showcase-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ads-showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #ffffff !important; /* Force white title text */
    margin-bottom: 40px;
}

/* Case Studies List */
.ads-showcase-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

/* Minimal Card styling in Monochrome Minimalism - ALWAYS Dark background for contrast with white screenshots */
.ads-showcase-minimal-card {
    background-color: #111827; /* Deep charcoal dark background */
    border: 1px solid #1f2937;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    width: 100%;
}

.theme-dark .ads-showcase-minimal-card {
    background-color: #0c0c0e; /* Even darker black-charcoal in theme dark */
    border-color: #1c1c1f;
}

/* Image frame to prevent light screenshots from looking invisible */
.ads-showcase-image-frame {
    border: 1px solid #374151; /* Clearly visible darker border */
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    background-color: #111827; /* Dark background under screenshot to prevent bleed */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.theme-dark .ads-showcase-image-frame {
    border-color: #27272a;
    background-color: #09090b;
}

.ads-showcase-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

/* Clean Minimal Stats Row */
.ads-showcase-minimal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.ads-minimal-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background-color: #1f2937; /* Lighter charcoal stat card for depth */
    border: 1px solid #374151;
    border-radius: 8px;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.theme-dark .ads-minimal-stat-item {
    background-color: #161619;
    border-color: #27272a;
}

.ads-minimal-stat-item .stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff; /* White text for high visibility */
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.theme-dark .ads-minimal-stat-item .stat-val {
    color: #ffffff;
}

.ads-minimal-stat-item .stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af; /* Muted silver/grey text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-dark .ads-minimal-stat-item .stat-lbl {
    color: #a1a1aa;
}


@media screen and (max-width: 768px) {
    .ads-dashboard-showcase-section {
        padding: 32px 16px !important;
    }
    
    .ads-showcase-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ads-showcase-minimal-card {
        padding: 16px;
        gap: 16px;
    }
    
    .ads-showcase-minimal-stats {
        gap: 12px;
    }
    
    .ads-minimal-stat-item {
        padding: 12px 8px;
    }
    
    .ads-minimal-stat-item .stat-val {
        font-size: 1.35rem;
    }
    
    .ads-minimal-stat-item .stat-lbl {
        font-size: 0.65rem;
    }
    
    .ads-showcase-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 540px) {
    .ads-showcase-minimal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .ads-minimal-stat-item {
        padding: 10px 4px;
    }

    .ads-minimal-stat-item .stat-val {
        font-size: 1.05rem;
    }
    
    .ads-minimal-stat-item .stat-lbl {
        font-size: 0.55rem;
        letter-spacing: 0px;
    }
}
/* ==========================================================================
   WhatsApp Chat Showcase Widget Styles
   ========================================================================== */

.ads-whatsapp-showcase-section {
    position: relative;
    max-width: var(--ads-desktop-width, 1140px);
    margin: 0 auto;
    width: 100%;
    padding: 48px 32px;
    box-sizing: border-box;
    background-color: #f3f4f6 !important; /* Premium light grey background */
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    min-height: auto !important; /* Override hero wrapper min-height */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.ads-whatsapp-showcase-section.has-grid-background {
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1.5px, transparent 1.5px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1.5px, transparent 1.5px) !important;
    background-size: 32px 32px;
    background-position: center top;
}

.ads-whatsapp-showcase-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ads-whatsapp-showcase-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    color: #111827 !important; /* Dark text for contrast */
    margin-bottom: 40px;
}

.ads-whatsapp-chat-grid {
    display: grid;
    gap: 32px;
    width: 100%;
    justify-content: center;
}

.ads-whatsapp-chat-grid.cols-1 {
    grid-template-columns: 1fr;
    max-width: 420px;
}

.ads-whatsapp-chat-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
}

.ads-whatsapp-chat-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ads-whatsapp-chat-card {
    position: relative;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    background-color: #0c0d14;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                border-color 0.4s ease;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.ads-whatsapp-chat-card .ads-phone-placeholder {
    height: 480px;
}

.ads-whatsapp-chat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.7);
    border-color: rgba(255, 255, 255, 0.18);
}

.ads-chat-bg-image {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    z-index: 1;
    transition: transform 0.5s ease;
}

.ads-whatsapp-chat-card:hover .ads-chat-bg-image {
    transform: scale(1.04);
}

.ads-chat-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px 24px;
    background: linear-gradient(to top, rgba(12, 13, 20, 0.98) 0%, rgba(12, 13, 20, 0.8) 50%, rgba(12, 13, 20, 0) 100%);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.ads-chat-caption-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 3.5vw, 1.55rem);
    line-height: 1.3;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 40%, #ffd200 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.2px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

/* Fallback placeholder style */
.ads-phone-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    color: #a1a1aa;
    text-align: center;
}

.ads-phone-placeholder-svg {
    width: 42px;
    height: 42px;
    fill: #4b5563;
}

.ads-phone-placeholder span {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Responsive Overrides */
@media screen and (max-width: 900px) {
    .ads-whatsapp-chat-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 880px;
    }
}

@media screen and (max-width: 768px) {
    .ads-whatsapp-showcase-section {
        padding: 32px 16px !important;
    }
    
    .ads-whatsapp-showcase-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 640px) {
    .ads-whatsapp-chat-grid.cols-2,
    .ads-whatsapp-chat-grid.cols-3 {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

/* ==========================================================================
   Sticky CTA Bar & Urgency Scarcity Ticker Styles
   ========================================================================== */

.ads-sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #0b0f19;
    border-top: 3px solid #000000;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    padding: 14px 24px;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.ads-sticky-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ads-sticky-cta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Pulsing live indicator dot */
.ads-sticky-pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1.5px solid #000000;
    animation: ads-pulse-green 1.6s infinite ease-in-out;
}

.ads-sticky-cta-text {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.ads-sticky-spots-count {
    display: inline-block;
    color: #facc15; /* yellow */
    font-weight: 800;
    transition: transform 0.3s ease;
}

.ads-sticky-spots-count.scale-up {
    transform: scale(1.3);
    color: #e11d48; /* red */
}

/* CTA Button */
.ads-sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: #e11d48 !important; /* Force vibrant rose-red background */
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.1s ease, box-shadow 0.1s ease, background-color 0.2s ease;
}

.ads-sticky-cta-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
    background-color: #f43f5e !important;
}

.ads-sticky-cta-btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}

/* Toast alert notification */
.ads-sticky-toast {
    position: fixed;
    bottom: 90px;
    right: 24px;
    background-color: #ffffff;
    color: #000000;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    z-index: 100000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ads-sticky-toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.ads-sticky-toast .toast-dot {
    width: 8px;
    height: 8px;
    background-color: #e11d48;
    border-radius: 50%;
    display: inline-block;
}

/* Add padding to body so content isn't cut off */
body {
    padding-bottom: 85px !important;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .ads-sticky-cta-bar {
        padding: 10px 16px;
    }
    .ads-sticky-cta-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 8px;
    }
    .ads-sticky-cta-text {
        font-size: 0.85rem;
    }
    .ads-sticky-cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .ads-sticky-toast {
        bottom: 80px;
        right: 16px;
        left: 16px;
        font-size: 0.85rem;
        justify-content: center;
    }
    body {
        padding-bottom: 75px !important;
    }
}

@media screen and (max-width: 480px) {
    .ads-sticky-cta-text {
        font-size: 0.72rem;
    }
    .ads-sticky-cta-btn {
        padding: 6px 10px;
        font-size: 0.72rem;
        box-shadow: 2px 2px 0px #000000;
    }
    .ads-sticky-cta-btn:hover {
        transform: none;
        box-shadow: 2px 2px 0px #000000;
    }
}

/* ==========================================================================
   Skincare CRO profit Formula Comparison Card
   ========================================================================== */

.ads-skincare-formula-card {
    margin: 32px auto;
    width: 100%;
    max-width: 580px;
    border: var(--ads-neo-border-width, 3px) solid #000000;
    box-shadow: var(--ads-neo-shadow-offset, 7px) var(--ads-neo-shadow-offset, 7px) 0px #000000;
    border-radius: 12px;
    background-color: #ffffff;
    overflow: hidden;
    text-align: left;
    box-sizing: border-box;
}

.ads-formula-header {
    background-color: #0b0f19;
    padding: 14px 16px;
    border-bottom: 2.5px solid #000000;
    text-align: center;
}

.formula-badge {
    font-size: 0.65rem;
    font-weight: 800;
    background-color: #e11d48; /* hot pink */
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: 1.5px solid #000000;
    display: inline-block;
    margin-bottom: 4px;
}

.formula-title {
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ads-formula-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.ads-formula-col {
    padding: 20px;
    box-sizing: border-box;
}

.ads-formula-col.col-left {
    background-color: #fff1f2; /* soft red/pink tint */
    border-right: 2.5px solid #000000;
}

.ads-formula-col.col-right {
    background-color: #f0fdf4; /* soft green tint */
}

.col-title {
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.col-left .col-title {
    color: #be123c;
}

.col-right .col-title {
    color: #15803d;
}

.col-subtitle {
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.formula-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.formula-list li {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    line-height: 1.4;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ads-formula-cross, .ads-formula-check {
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 0.65rem;
    flex-shrink: 0;
    border: 1.5px solid #000000;
    margin-top: 1px;
}

.ads-formula-cross {
    background-color: #f87171;
    color: #000000;
}

.ads-formula-check {
    background-color: #4ade80;
    color: #000000;
}

@media screen and (max-width: 600px) {
    .ads-formula-grid {
        grid-template-columns: 1fr;
    }
    .ads-formula-col.col-left {
        border-right: none;
        border-bottom: 2.5px solid #000000;
    }
}

/* ==========================================================================
   Lead Capture Popup Modal Styles
   ========================================================================== */
.ads-lead-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.ads-lead-popup-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.ads-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 14, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.ads-modal-card {
    position: relative;
    background: #ffffff;
    border: 3.5px solid #111827;
    box-shadow: 8px 8px 0px #000000;
    border-radius: 16px;
    width: 94%;
    max-width: 480px;
    padding: 28px 24px;
    z-index: 10;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: visible;
    box-sizing: border-box;
    max-height: 90vh;
    overflow-y: auto;
}

.ads-lead-popup-modal.active .ads-modal-card {
    transform: scale(1) translateY(0);
}

.ads-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 26px;
    font-weight: 700;
    color: #9ca3af;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.ads-modal-close:hover {
    color: #111827;
}

.ads-modal-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 10px 0;
    color: #111827;
    line-height: 1.2;
    text-transform: none;
}

.ads-modal-title span {
    color: #dcae36; /* Golden highlight */
}

/* Gold dotted inner border wrap */
.ads-modal-inner-border {
    border: 2px dashed #dcae36;
    border-radius: 8px;
    padding: 22px 20px;
    margin-top: 15px;
    background-color: #fafafa;
}

.ads-modal-form-group {
    margin-bottom: 16px;
    position: relative;
    box-sizing: border-box;
}

.ads-modal-form-group:last-child {
    margin-bottom: 0;
}

.ads-modal-form-group input[type="text"],
.ads-modal-form-group input[type="email"],
.ads-modal-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #c3c3c3;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #111827;
    background: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ads-modal-form-group input:focus,
.ads-modal-form-group textarea:focus {
    border-color: #dcae36;
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 174, 54, 0.15);
}

.ads-modal-form-group textarea {
    height: 85px;
    resize: none;
}

/* Flag selector and phone input */
.ads-phone-input-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.ads-flag-dropdown {
    position: relative;
    border: 2px solid #c3c3c3;
    border-right: none;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background-color: #f3f4f6;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    box-sizing: border-box;
}

.ads-selected-flag {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.ads-flag-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    background: #ffffff;
    border: 2.5px solid #111827;
    box-shadow: 4px 4px 0px #000000;
    border-radius: 6px;
    list-style: none;
    padding: 6px 0;
    margin: 4px 0 0 0;
    width: 200px;
    max-height: 180px;
    overflow-y: auto;
    display: none;
    box-sizing: border-box;
}

.ads-flag-list.active {
    display: block;
}

.ads-flag-list li {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 0.88rem;
    color: #111827;
    text-align: left;
}

.ads-flag-list li:hover {
    background-color: #f3f4f6;
}

#ads-phone-input {
    flex-grow: 1;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border: 2px solid #c3c3c3;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    box-sizing: border-box;
}

/* Submit Button - Premium Gradient CTA */
.ads-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #e11d48 0%, #be123c 50%, #9f1239 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    margin-top: 14px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4), 0 1px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.3px;
}

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

.ads-submit-btn:hover {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 50%, #be123c 100%);
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.55), 0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.ads-submit-btn:hover::before {
    left: 100%;
}

.ads-submit-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.35);
}

.ads-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2) !important;
}

.ads-submit-btn .ads-btn-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: inline-block;
    flex-shrink: 0;
}

.ads-submit-btn .ads-btn-text {
    flex-grow: 1;
    text-align: center;
}

.ads-submit-btn .ads-btn-arrow {
    width: 20px;
    height: 20px;
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.ads-submit-btn:hover .ads-btn-arrow {
    transform: translateX(4px);
}

.ads-form-error {
    background-color: #fef2f2;
    border: 1.5px solid #f87171;
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.88rem;
    margin-bottom: 14px;
    font-family: var(--font-body);
    display: none;
    text-align: left;
    box-sizing: border-box;
}

/* Success Card CSS */
.ads-modal-success-state {
    text-align: center;
    padding: 15px 5px;
    display: none;
}

.ads-success-checkmark {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: #ecfdf5;
    border: 2px solid #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    animation: check-scale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.ads-success-checkmark svg {
    width: 30px;
    height: 30px;
}

@keyframes check-scale {
    0% { transform: scale(0.6); }
    100% { transform: scale(1); }
}

.ads-success-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px 0;
}

.ads-success-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

.ads-success-desc strong {
    color: #e11d48;
}

/* Loading state spinner */
.ads-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    animation: ads-spin 0.6s linear infinite;
}

@keyframes ads-spin {
    to { transform: rotate(360deg); }
}

body.ads-modal-open {
    overflow: hidden !important;
}

/* ==========================================
   Popup Modal Mobile-First Responsive
   ========================================== */
@media screen and (max-width: 600px) {
    .ads-modal-card {
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
        border: none;
        border-top: 3px solid #111827;
        padding: 24px 18px 32px;
        transform: translateY(100%);
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .ads-lead-popup-modal {
        align-items: flex-end;
    }

    .ads-lead-popup-modal.active .ads-modal-card {
        transform: translateY(0);
    }

    .ads-modal-title {
        font-size: 1.3rem;
    }

    .ads-modal-inner-border {
        padding: 16px 14px;
    }

    .ads-modal-form-group input[type="text"],
    .ads-modal-form-group input[type="email"],
    .ads-modal-form-group textarea {
        padding: 14px 14px;
        font-size: 1rem;
    }

    #ads-phone-input {
        padding: 14px 14px;
        font-size: 1rem;
    }

    .ads-modal-form-group textarea {
        height: 70px;
    }

    .ads-submit-btn {
        font-size: 1.05rem;
        padding: 16px 20px;
        border-radius: 12px;
    }

    .ads-modal-close {
        top: 10px;
        right: 14px;
        font-size: 28px;
    }
}

@media screen and (max-width: 380px) {
    .ads-modal-card {
        padding: 20px 14px 28px;
    }

    .ads-modal-title {
        font-size: 1.15rem;
    }

    .ads-submit-btn {
        font-size: 0.95rem;
        padding: 14px 16px;
    }

    .ads-flag-dropdown {
        padding: 0 8px;
    }
}

/* ==========================================================================
   Plus Cards (Showcase CTAs) Styles
   ========================================================================== */

.ads-whatsapp-chat-grid.cols-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    justify-content: center;
}

@media screen and (max-width: 1024px) {
    .ads-whatsapp-chat-grid.cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 640px) {
    .ads-whatsapp-chat-grid.cols-4 {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
}

.ads-plus-card-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                border-color 0.4s ease;
}

.ads-plus-card-frame {
    border: 2px dashed rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.02) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    height: 100%;
}

.ads-plus-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 30px;
}

.ads-plus-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(225, 29, 72, 0.1);
    border: 2px dashed #e11d48;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e11d48;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ads-plus-card-wrap:hover .ads-plus-icon-circle {
    transform: scale(1.1) rotate(90deg);
    background-color: rgba(225, 29, 72, 0.2);
}

.ads-plus-icon-svg {
    width: 24px;
    height: 24px;
}

.ads-plus-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.ads-plus-card-subtitle {
    font-size: 0.85rem;
    color: #a1a1aa;
    text-align: center;
}

/* WhatsApp Plus Card Content */
.ads-plus-card-content-whatsapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 80px 30px 140px; /* Offset spacing to leave room for bottom overlay */
    background-color: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 100%;
    box-sizing: border-box;
}

.ads-plus-icon-circle-whatsapp {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 210, 0, 0.1);
    border: 2px dashed #ffd200;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd200;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ads-plus-card-wrap:hover .ads-plus-icon-circle-whatsapp {
    transform: scale(1.1) rotate(90deg);
    background-color: rgba(255, 210, 0, 0.2);
}

.ads-plus-icon-svg-whatsapp {
    width: 24px;
    height: 24px;
}

.ads-plus-card-title-whatsapp {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.5px;
}

.ads-plus-card-subtitle-whatsapp {
    font-size: 0.85rem;
    color: #a1a1aa;
    text-align: center;
}

/* Plus Cards CTA Buttons styling */
.ads-plus-card-cta {
    background: #e11d48 !important; /* Solid pinkish-red */
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none !important;
    transition: background-color 0.2s ease;
    display: inline-block;
    margin-top: 8px;
}

.ads-plus-card-wrap:hover .ads-plus-card-cta {
    background: #f43f5e !important;
}

.ads-whatsapp-chat-card.ads-plus-card-wrap .ads-chat-card-overlay {
    background: none !important; /* Remove the heavy dark gradient overlay */
    padding: 0 20px 40px !important;
}

.ads-whatsapp-chat-card.ads-plus-card-wrap .ads-chat-caption-text {
    background: #e11d48 !important; /* Solid pinkish-red */
    -webkit-text-fill-color: #ffffff !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    font-size: 0.85rem !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none !important;
    transition: background-color 0.2s ease;
    display: inline-block;
    filter: none !important;
}

.ads-whatsapp-chat-card.ads-plus-card-wrap:hover .ads-chat-caption-text {
    background: #f43f5e !important;
}

