/* Landing Page Improvements CSS */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Meta Ads Landing – tighten hero spacing & make hero full-width */
.page-template-page-meta-ads-landing main.meta-ads-landing,
.page-template-page-cold-email-landing main.meta-ads-landing {
    padding-top: 0;
    margin-block-start: 0;
}

/* Meta Ads Landing: override WP root padding on the main container (scoped to this template) */
.page-template-page-meta-ads-landing main#wp--skip-link--target.meta-ads-landing {
	padding-left: 10px;
	padding-right: 10px;
}

/* Cold Email Landing: add page gutters so content doesn't touch the viewport edge */
.page-template-page-cold-email-landing main.meta-ads-landing {
	padding-inline: clamp(1rem, 4vw, 3rem);
	padding-top: clamp(1rem, 3vw, 2rem);
	padding-bottom: clamp(1rem, 3vw, 2rem);
}

.page-template-page-meta-ads-landing main.meta-ads-landing > .wp-block-group.is-layout-constrained:first-child,
.page-template-page-cold-email-landing main.meta-ads-landing > .wp-block-group.is-layout-constrained:first-child {
    /* remove global gap margin and width constraint wrapper around hero */
    margin-top: 0 !important;
    max-width: none;
    width: 100%;
}

.page-template-page-meta-ads-landing .hero-section.meta-ads-hero,
.page-template-page-cold-email-landing .hero-section.meta-ads-hero {
    padding-top: 3rem !important;
    max-width: none;
    width: 100%;
    margin-block-start: 0;
}

/* Cold Email Landing: make the hero feel like a real above-the-fold landing */
.page-template-page-cold-email-landing .hero-section.meta-ads-hero.meta-ads-hero-split {
	min-height: calc(100svh - 140px);
	min-height: calc(100vh - 140px);
	display: flex;
	/* Center the split container vertically inside the hero wrapper */
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
}

/* Cold Email Landing: keep the purple panel off the edges */
.page-template-page-cold-email-landing .hero-section.meta-ads-hero.meta-ads-hero-split {
	max-width: 1280px;
	margin-inline: auto;
	border-radius: 28px;
}

/* Meta Ads Landing & Prepare Setup – custom header with non-clickable branding */
.page-template-page-meta-ads-landing .meta-ads-header,
.page-template-page-cold-email-landing .meta-ads-header,
.page-template-page-prepare-setup .meta-ads-header {
    padding: 1rem 3rem !important;
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.page-template-page-meta-ads-landing .meta-ads-header .wp-block-group,
.page-template-page-cold-email-landing .meta-ads-header .wp-block-group,
.page-template-page-prepare-setup .meta-ads-header .wp-block-group {
    margin: 0;
    gap: 0.6rem;
}

.page-template-page-meta-ads-landing .meta-ads-header a,
.page-template-page-cold-email-landing .meta-ads-header a,
.page-template-page-prepare-setup .meta-ads-header a {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}

.page-template-page-meta-ads-landing .meta-ads-header .wp-block-site-title,
.page-template-page-cold-email-landing .meta-ads-header .wp-block-site-title,
.page-template-page-prepare-setup .meta-ads-header .wp-block-site-title {
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.page-template-page-meta-ads-landing .meta-ads-header .wp-block-site-logo img,
.page-template-page-cold-email-landing .meta-ads-header .wp-block-site-logo img,
.page-template-page-prepare-setup .meta-ads-header .wp-block-site-logo img {
    width: 20px;
    height: auto;
}

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

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

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

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

/* =========================================
   Premium SEO AI Agent page polish
   URL: /premium-seo-ai-agent-for-wordpress/
   ========================================= */

/* 1) Tighten whitespace before hero and make hero a gradient panel */
.page-template-page-meta-ads-landing main.wp-block-group,
.page-template-page-cold-email-landing main.wp-block-group {
    /* remove any extra top padding that makes the hero float down */
    padding-top: 0;
}

.page-template-page-meta-ads-landing main.wp-block-group > p:first-child,
.page-template-page-meta-ads-landing main.wp-block-group > p:nth-child(2),
.page-template-page-cold-email-landing main.wp-block-group > p:first-child,
.page-template-page-cold-email-landing main.wp-block-group > p:nth-child(2) {
    /* kill the two empty paragraphs that create white space above the hero */
    margin: 0;
    height: 0;
    line-height: 0;
    padding: 0;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type {
    /* hero container */
	margin-top: 0;
	padding: 0;
	border-radius: 28px;
	background: linear-gradient(135deg, #4338ca 0%, #5b21b6 50%, #7c3aed 100%);
	color: #ffffff;
	box-shadow: 
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 40px 100px rgba(79, 70, 229, 0.4),
		0 20px 60px rgba(139, 92, 246, 0.3);
	position: relative;
	overflow: visible;
}

.page-template-page-cold-email-landing main.wp-block-group > .wp-block-group:first-of-type {
    /* hero container */
	margin-top: 0;
	padding: 50px;
	border-radius: 28px;
	background: linear-gradient(135deg, #4338ca 0%, #5b21b6 50%, #7c3aed 100%);
	color: #ffffff;
	box-shadow: 
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 40px 100px rgba(79, 70, 229, 0.4),
		0 20px 60px rgba(139, 92, 246, 0.3);
	position: relative;
	overflow: visible;
}

/* Add subtle animated gradient overlay for depth */
.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type::before,
.page-template-page-cold-email-landing main.wp-block-group > .wp-block-group:first-of-type::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
				radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
	pointer-events: none;
	z-index: 0;
}

/* Ensure content sits above the overlay */
.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type > *,
.page-template-page-cold-email-landing main.wp-block-group > .wp-block-group:first-of-type > * {
	position: relative;
	z-index: 1;
}

/* Hero typography + list inside panel */
.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type h1,
.page-template-page-cold-email-landing main.wp-block-group > .wp-block-group:first-of-type h1 {
    color: #ffffff;
	font-size: clamp(2.5rem, 4.5vw, 3.5rem);
	line-height: 1.12;
    letter-spacing: -0.02em;
	margin-bottom: 1rem;
	font-weight: 800;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* Meta Ads / Premium SEO hero – compact, above-the-fold-friendly layout */
.page-template-page-meta-ads-landing .meta-ads-hero,
.page-template-page-cold-email-landing .meta-ads-hero {
	max-width: 960px;
	margin-inline: auto;
	padding-inline: clamp(1.5rem, 5vw, 3rem);
}

/* Social Proof Badge - Avatar Stack + Stars */
.page-template-page-meta-ads-landing .meta-ads-social-proof,
.page-template-page-cold-email-landing .meta-ads-social-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	width: 100%;
}

.page-template-page-meta-ads-landing .social-proof-avatars,
.page-template-page-cold-email-landing .social-proof-avatars {
	display: flex;
	align-items: center;
}

.page-template-page-meta-ads-landing .social-proof-avatar,
.page-template-page-cold-email-landing .social-proof-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.3);
	margin-left: -12px;
	transition: transform 0.2s ease, border-color 0.2s ease;
	object-fit: cover;
}

.page-template-page-meta-ads-landing .social-proof-avatar:first-child,
.page-template-page-cold-email-landing .social-proof-avatar:first-child {
	margin-left: 0;
}

.page-template-page-meta-ads-landing .social-proof-avatar:hover,
.page-template-page-cold-email-landing .social-proof-avatar:hover {
	transform: scale(1.1) translateY(-2px);
	border-color: rgba(255, 255, 255, 0.6);
	z-index: 10;
}

.page-template-page-meta-ads-landing .social-proof-content,
.page-template-page-cold-email-landing .social-proof-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.05rem;
}

.page-template-page-meta-ads-landing .social-proof-stars,
.page-template-page-cold-email-landing .social-proof-stars {
	color: #fbbf24;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-template-page-meta-ads-landing .social-proof-text,
.page-template-page-cold-email-landing .social-proof-text {
	color: #ffffff;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1;
	opacity: 0.95;
}

.page-template-page-meta-ads-landing .meta-ads-hero .cp-hero-heading {
	font-size: clamp(4.75rem, 5vw, 3rem) !important;
	line-height: 1.15 !important;
	margin-bottom: 2.5rem !important;
	font-weight: 800 !important;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
}

.page-template-page-meta-ads-landing .meta-ads-hero .hero-description {
	font-size: clamp(1.1rem, 1.3vw, 1.35rem) !important;
	max-width: 44rem;
	margin-inline: auto;
	margin-bottom: 0;
	opacity: 0.95;
	line-height: 1.5;
}

.page-template-page-meta-ads-landing .meta-ads-hero-bullets {
	max-width: 44rem;
	margin: 1.5rem auto 0;
	padding-left: 0;
	list-style: none;
	font-size: 1rem;
	line-height: 1.6;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 0.75rem 1.5rem;
    color: #ffffff;
}

.page-template-page-meta-ads-landing .meta-ads-hero-bullets li {
	padding-left: 1.75rem;
	position: relative;
	opacity: 0.92;
}

.page-template-page-meta-ads-landing .meta-ads-hero-bullets li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #a5f3fc;
	font-weight: 700;
	font-size: 1.1rem;
}

.page-template-page-meta-ads-landing .meta-ads-hero-bullets li + li {
	margin-top: 0;
}

.page-template-page-meta-ads-landing .meta-ads-hero .wp-block-buttons {
	margin-top: 1rem !important;
}

.page-template-page-meta-ads-landing .meta-ads-hero .meta-ads-guarantee {
	margin-top: 0.75rem !important;
	margin-bottom: 1.5rem !important;
    color: #e5e7eb;
	opacity: 0.9;
}

/* =============================================
   HERO SPLIT LAYOUT - Text Left, Image Right
   ============================================= */

.page-template-page-meta-ads-landing .meta-ads-hero-split,
.page-template-page-cold-email-landing .meta-ads-hero-split {
	padding: 3.5rem 3rem 5rem;
}

/* Meta Ads Landing: enforce exact side padding on the hero wrapper (desktop) */
.page-template-page-meta-ads-landing .meta-ads-hero-split {
	padding-left: 50px;
	padding-right: 50px;
}

/* Cold Email Landing: give the hero more vertical presence above-the-fold */
.page-template-page-cold-email-landing .meta-ads-hero-split {
	/* Use symmetric vertical padding so centered content doesn't look "high" */
	padding: clamp(4.5rem, 10vh, 6.25rem) 3rem;
}

/* Cold Email Landing: enforce exact side padding on the hero wrapper (desktop) */
.page-template-page-cold-email-landing .meta-ads-hero-split {
	padding-left: 50px;
	padding-right: 50px;
}

.page-template-page-meta-ads-landing .hero-split-container,
.page-template-page-cold-email-landing .hero-split-container {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 4rem;
	align-items: center;
	max-width: 1280px;
	margin: 0 auto;
}

/* Left Column - Text */
.page-template-page-meta-ads-landing .hero-split-text,
.page-template-page-cold-email-landing .hero-split-text {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	position: relative;
	z-index: 5;
}

.page-template-page-meta-ads-landing .hero-title-left,
.page-template-page-cold-email-landing .hero-title-left {
	line-height: 1.05 !important;
	margin-bottom: 0.75rem !important;
	text-align: left !important;
	letter-spacing: -0.02em;
	font-weight: 800 !important;
    margin-top: 1rem;
}

.page-template-page-meta-ads-landing .hero-description-left,
.page-template-page-cold-email-landing .hero-description-left {
	font-size: 1.15rem !important;
	line-height: 1.5 !important;
	text-align: left !important;
	max-width: 480px;
	opacity: 0.95;
}

.page-template-page-meta-ads-landing .meta-ads-social-proof-left,
.page-template-page-cold-email-landing .meta-ads-social-proof-left {
	justify-content: flex-start !important;
	margin-top: 0.75rem;
	margin-bottom: 0;
}

.page-template-page-meta-ads-landing .meta-ads-social-proof-left .social-proof-avatar,
.page-template-page-cold-email-landing .meta-ads-social-proof-left .social-proof-avatar {
	width: 32px;
	height: 32px;
	margin-left: -16px;
	border-width: 2px;
}

.page-template-page-meta-ads-landing .meta-ads-social-proof-left .social-proof-avatar:first-child,
.page-template-page-cold-email-landing .meta-ads-social-proof-left .social-proof-avatar:first-child {
	margin-left: 0;
}

.page-template-page-meta-ads-landing .meta-ads-social-proof-left .social-proof-stars,
.page-template-page-cold-email-landing .meta-ads-social-proof-left .social-proof-stars {
	font-size: 0.9rem;
    line-height: 1.25;
}

.page-template-page-meta-ads-landing .meta-ads-social-proof-left .social-proof-text,
.page-template-page-cold-email-landing .meta-ads-social-proof-left .social-proof-text {
	font-size: 0.8rem;
}

.page-template-page-meta-ads-landing .meta-ads-guarantee-left {
	text-align: left !important;
	margin-top: 0.5rem !important;
}

/* Right Column - Screenshot with Callouts */
.page-template-page-meta-ads-landing .hero-split-image,
.page-template-page-cold-email-landing .hero-split-image {
	position: relative;
	overflow: visible;
}

.page-template-page-meta-ads-landing .hero-screenshot-wrapper,
.page-template-page-cold-email-landing .hero-screenshot-wrapper {
	position: relative;
	padding: 3rem 0 2rem 0;
	margin-left: -60px;
    margin-right: -10px;
}

.page-template-page-meta-ads-landing .hero-split-image .hero-product-image,
.page-template-page-cold-email-landing .hero-split-image .hero-product-image {
	margin: 0;
	position: relative;
	z-index: 1;
}

.page-template-page-meta-ads-landing .hero-split-image .hero-product-image img,
.page-template-page-cold-email-landing .hero-split-image .hero-product-image img {
	width: 100%;
	max-width: none;
	height: auto;
	border-radius: 12px;
    padding: 1rem;
	box-shadow: 
		0 35px 100px rgba(0, 0, 0, 0.45),
		0 20px 60px rgba(79, 70, 229, 0.3),
		0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Whimsical Callouts */
.page-template-page-meta-ads-landing .hero-callout,
.page-template-page-cold-email-landing .hero-callout {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255);
	padding: 0.6rem 1rem;
	border-radius: 24px;
	box-shadow: 
		0 8px 25px rgba(0, 0, 0, 0.15),
		0 2px 8px rgba(0, 0, 0, 0.1);
	font-size: 0.9rem;
	font-weight: 600;
	color: #1f2937;
	white-space: nowrap;
	z-index: 10;
	transform: rotate(-2deg);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-template-page-meta-ads-landing .hero-callout:hover,
.page-template-page-cold-email-landing .hero-callout:hover {
	transform: rotate(0deg) scale(1.05);
	box-shadow: 
		0 12px 35px rgba(0, 0, 0, 0.2),
		0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-template-page-meta-ads-landing .hero-callout .callout-icon,
.page-template-page-cold-email-landing .hero-callout .callout-icon {
	font-size: 1.1rem;
}

.page-template-page-meta-ads-landing .hero-callout .callout-text,
.page-template-page-cold-email-landing .hero-callout .callout-text {
	letter-spacing: -0.01em;
}

/* Callout Positions */
.page-template-page-meta-ads-landing .hero-callout-1,
.page-template-page-cold-email-landing .hero-callout-1 {
	top: -5px;
	right: -5%;
	transform: rotate(-8deg);
}

.page-template-page-meta-ads-landing .hero-callout-2,
.page-template-page-cold-email-landing .hero-callout-2 {
	top: 28%;
	left: -35px;
	transform: rotate(6deg);
}

.page-template-page-meta-ads-landing .hero-callout-3,
.page-template-page-cold-email-landing .hero-callout-3 {
	bottom: 5%;
	right: -3%;
	transform: rotate(-1deg);
}

/* Mobile: Stack layout */
@media (max-width: 900px) {
	.page-template-page-meta-ads-landing .hero-split-container,
	.page-template-page-cold-email-landing .hero-split-container {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.page-template-page-meta-ads-landing .hero-split-text,
	.page-template-page-cold-email-landing .hero-split-text {
		order: 1;
		align-items: center;
	}

	.page-template-page-meta-ads-landing .hero-title-left,
	.page-template-page-meta-ads-landing .hero-description-left,
	.page-template-page-meta-ads-landing .meta-ads-guarantee-left,
	.page-template-page-cold-email-landing .hero-title-left,
	.page-template-page-cold-email-landing .hero-description-left,
	.page-template-page-cold-email-landing .meta-ads-guarantee-left {
		text-align: center !important;
	}

	.page-template-page-meta-ads-landing .meta-ads-social-proof-left,
	.page-template-page-cold-email-landing .meta-ads-social-proof-left {
		justify-content: center !important;
	}

	.page-template-page-meta-ads-landing .hero-split-text .wp-block-buttons,
	.page-template-page-cold-email-landing .hero-split-text .wp-block-buttons {
		justify-content: center !important;
	}

	.page-template-page-meta-ads-landing .hero-split-image,
	.page-template-page-cold-email-landing .hero-split-image {
		order: 2;
	}

	.page-template-page-meta-ads-landing .hero-screenshot-wrapper,
	.page-template-page-cold-email-landing .hero-screenshot-wrapper {
		padding: 3rem 0.5rem 1rem;
		margin-left: 0;
		margin-right: 0;
	}

	.page-template-page-meta-ads-landing .hero-split-image .hero-product-image img,
	.page-template-page-cold-email-landing .hero-split-image .hero-product-image img {
		width: 100%;
	}

	/* Adjust callout positions for mobile */
	.page-template-page-meta-ads-landing .hero-callout,
	.page-template-page-cold-email-landing .hero-callout {
		font-size: 0.8rem;
		padding: 0.5rem 0.75rem;
	}

	.page-template-page-meta-ads-landing .hero-callout-1,
	.page-template-page-cold-email-landing .hero-callout-1 {
		top: 0;
		right: 5%;
	}

	.page-template-page-meta-ads-landing .hero-callout-2,
	.page-template-page-cold-email-landing .hero-callout-2 {
		top: 25%;
		left: -5px;
	}

	.page-template-page-meta-ads-landing .hero-callout-3,
	.page-template-page-cold-email-landing .hero-callout-3 {
		bottom: 10%;
		right: 0;
	}

}

@media (max-width: 500px) {
	.page-template-page-meta-ads-landing .hero-callout-2,
	.page-template-page-cold-email-landing .hero-callout-2 {
		display: none;
	}
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type p,
.page-template-page-cold-email-landing main.wp-block-group > .wp-block-group:first-of-type p {
    color: #e5e7eb;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type ul {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type li {
    color: #e5e7eb;
}

/* Hero CTA button */
.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type a.wp-block-button__link {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    color: #4338ca;
    border-radius: 12px;
    padding: 1.1rem 2.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 
		0 0 0 3px rgba(255, 255, 255, 0.2),
		0 20px 50px rgba(0, 0, 0, 0.25),
		0 10px 25px rgba(79, 70, 229, 0.3);
    transition: all 0.2s ease;
	letter-spacing: -0.01em;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type a.wp-block-button__link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
		0 0 0 3px rgba(255, 255, 255, 0.3),
		0 25px 60px rgba(0, 0, 0, 0.3),
		0 15px 35px rgba(79, 70, 229, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
}

/* Guarantee line under hero CTA */
.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type p:last-child {
    margin-top: 0.75rem;
    font-size: 0.925rem;
    opacity: 0.85;
	font-weight: 500;
}

/* =============================================
   FILLED CTA BUTTON (for white backgrounds)
   ============================================= */

.page-template-page-meta-ads-landing .cta-filled-button .wp-block-button__link {
	background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: 12px;
	padding: 1rem 2.5rem !important;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 
		0 10px 30px rgba(67, 56, 202, 0.3),
		0 5px 15px rgba(109, 40, 217, 0.2);
	transition: all 0.2s ease;
}

.page-template-page-meta-ads-landing .cta-filled-button .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 
		0 15px 40px rgba(67, 56, 202, 0.4),
		0 8px 20px rgba(109, 40, 217, 0.3);
	background: linear-gradient(135deg, #3730a3 0%, #5b21b6 100%) !important;
}

/* =============================================
   PROBLEM → SOLUTION SPLIT SECTION
   ============================================= */

.page-template-page-meta-ads-landing .meta-ads-problem-solution {
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	padding: 5rem 2rem;
    margin-block-start: 0;
}

.page-template-page-meta-ads-landing .problem-solution-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	max-width: 1100px;
	margin: 0 auto;
	align-items: start;
}

/* Section Labels */
.page-template-page-meta-ads-landing .section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 0.4rem 0.8rem;
	border-radius: 20px;
	margin-bottom: 1rem;
}

.page-template-page-meta-ads-landing .section-label-problem {
	background: #fef2f2;
	color: #dc2626;
}

.page-template-page-meta-ads-landing .section-label-solution {
	background: #ecfdf5;
	color: #059669;
}

/* Column Headings */
.page-template-page-meta-ads-landing .problem-heading,
.page-template-page-meta-ads-landing .solution-heading {
	font-size: 1.75rem !important;
	line-height: 1.2 !important;
	margin-bottom: 1.5rem !important;
	font-weight: 700;
}

.page-template-page-meta-ads-landing .problem-heading {
	color: #1e293b;
}

.page-template-page-meta-ads-landing .solution-heading {
	color: #4338ca;
}

/* Problem List */
.page-template-page-meta-ads-landing .problem-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.page-template-page-meta-ads-landing .problem-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #475569;
}

.page-template-page-meta-ads-landing .problem-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background: #fecaca;
	color: #dc2626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8rem;
	font-weight: 700;
	margin-top: 2px;
}

/* Solution List */
.page-template-page-meta-ads-landing .solution-list {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.page-template-page-meta-ads-landing .solution-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #374151;
}

.page-template-page-meta-ads-landing .solution-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	background: #a7f3d0;
	color: #059669;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
	margin-top: 2px;
}

/* Problem Column */
.page-template-page-meta-ads-landing .problem-column {
	padding: 2rem;
}

/* Solution Column */
.page-template-page-meta-ads-landing .solution-column {
	background: #ffffff;
	padding: 2rem;
	border-radius: 20px;
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Mobile Responsive */
@media (max-width: 800px) {
	.page-template-page-meta-ads-landing .problem-solution-container {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.page-template-page-meta-ads-landing .meta-ads-problem-solution {
		padding: 3rem 1.25rem;
	}

	.page-template-page-meta-ads-landing .problem-heading,
	.page-template-page-meta-ads-landing .solution-heading {
		font-size: 1.5rem !important;
	}

	.page-template-page-meta-ads-landing .problem-column,
	.page-template-page-meta-ads-landing .solution-column {
		padding: 1.5rem;
	}
}

/* =============================================
   FEATURES SECTION - Alternating Image/Text Rows
   ============================================= */

.page-template-page-meta-ads-landing .meta-ads-features-alternating {
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	padding: 5rem 2rem;
}

.page-template-page-meta-ads-landing .features-header {
	max-width: 800px;
	margin: 0 auto 4rem;
	text-align: center;
}

.page-template-page-meta-ads-landing .features-main-heading {
	font-size: clamp(2rem, 4vw, 2.75rem) !important;
	line-height: 1.15 !important;
	font-weight: 800;
	color: #1e293b;
}

/* Feature Rows */
.page-template-page-meta-ads-landing .feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1100px;
	margin: 0 auto 5rem;
}

.page-template-page-meta-ads-landing .feature-row:last-of-type {
	margin-bottom: 4rem;
}

.page-template-page-meta-ads-landing .feature-row-reverse {
	direction: rtl;
}

.page-template-page-meta-ads-landing .feature-row-reverse > * {
	direction: ltr;
}

/* Feature Image */
.page-template-page-meta-ads-landing .feature-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.15),
		0 10px 30px rgba(79, 70, 229, 0.1);
}

/* Feature Text */
.page-template-page-meta-ads-landing .feature-text {
	padding: 1rem 0;
}

.page-template-page-meta-ads-landing .feature-number {
	display: inline-block;
	font-size: 0.85rem;
	font-weight: 800;
	color: #4338ca;
	background: #e0e7ff;
	padding: 0.35rem 0.75rem;
	border-radius: 20px;
	margin-bottom: 1rem;
	letter-spacing: 0.05em;
}

.page-template-page-meta-ads-landing .feature-heading {
	font-size: 1.75rem !important;
	line-height: 1.2 !important;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 1rem !important;
}

.page-template-page-meta-ads-landing .feature-description {
	font-size: 1.1rem;
	line-height: 1.6;
	color: #475569;
}

/* Micro-proof Callout */
.page-template-page-meta-ads-landing .features-micro-proof {
	max-width: 700px;
	margin: 0 auto 3rem;
	text-align: center;
}

.page-template-page-meta-ads-landing .micro-proof-content {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	padding: 1.5rem 3rem;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.page-template-page-meta-ads-landing .micro-proof-stat {
	font-size: 1.5rem;
	font-weight: 700;
	color: #4338ca;
	line-height: 1;
}

.page-template-page-meta-ads-landing .micro-proof-text {
	font-size: 1rem;
	color: #475569;
	max-width: 400px;
}

.page-template-page-meta-ads-landing .micro-proof-cta {
	margin: 1.25rem;
	justify-content: center;
}

/* ============================================
   SECTION 4: BENEFITS GRID
   ============================================ */

.page-template-page-meta-ads-landing .meta-ads-benefits-grid {
	background: #ffffff;
	padding: 5rem 2rem;
}

.page-template-page-meta-ads-landing .benefits-grid-heading {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 3rem;
}

.page-template-page-meta-ads-landing .benefits-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

.page-template-page-meta-ads-landing .benefit-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 2rem;
	transition: all 0.2s ease;
}

.page-template-page-meta-ads-landing .benefit-card:hover {
	border-color: #c7d2fe;
	box-shadow: 0 10px 40px rgba(79, 70, 229, 0.08);
}

.page-template-page-meta-ads-landing .benefit-icon {
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
	color: #ffffff;
}

.page-template-page-meta-ads-landing .benefit-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 0.5rem 0;
}

.page-template-page-meta-ads-landing .benefit-description {
	font-size: 0.95rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Benefits Grid Responsive */
@media (max-width: 900px) {
	.page-template-page-meta-ads-landing .benefits-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.page-template-page-meta-ads-landing .benefits-cards-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   SECTION 5: FINAL CTA
   ============================================ */

.page-template-page-meta-ads-landing .meta-ads-final-cta-section {
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
	padding: 5rem 2rem;
}

.page-template-page-meta-ads-landing .final-cta-content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.page-template-page-meta-ads-landing .final-cta-heading {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 1rem;
}

.page-template-page-meta-ads-landing .final-cta-subtext {
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
}

.page-template-page-meta-ads-landing .final-cta-button .wp-block-button__link {
	background: #ffffff;
	color: #4338ca;
	border-radius: 12px;
	padding: 1.1rem 2.75rem;
	font-weight: 700;
	font-size: 1.125rem;
	box-shadow: 
		0 20px 50px rgba(0, 0, 0, 0.3),
		0 10px 25px rgba(0, 0, 0, 0.2);
	transition: all 0.2s ease;
}

.page-template-page-meta-ads-landing .final-cta-button .wp-block-button__link:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 
		0 25px 60px rgba(0, 0, 0, 0.35),
		0 15px 35px rgba(0, 0, 0, 0.25);
}

.page-template-page-meta-ads-landing .final-cta-trust-strip {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.page-template-page-meta-ads-landing .trust-item {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 500;
}

@media (max-width: 600px) {
	.page-template-page-meta-ads-landing .final-cta-trust-strip {
		flex-direction: column;
		gap: 0.75rem;
	}
}

/* CTA */
.page-template-page-meta-ads-landing .features-cta {
	text-align: center;
}

/* Mobile Responsive */
@media (max-width: 900px) {
	.page-template-page-meta-ads-landing .meta-ads-features-alternating {
		padding: 3rem 1.25rem;
	}

	.page-template-page-meta-ads-landing .features-header {
		margin-bottom: 3rem;
	}

	.page-template-page-meta-ads-landing .feature-row {
		grid-template-columns: 1fr;
		gap: 2rem;
		margin-bottom: 3rem;
	}

	.page-template-page-meta-ads-landing .feature-row-reverse {
		direction: ltr;
	}

	.page-template-page-meta-ads-landing .feature-image {
		order: 1;
	}

	.page-template-page-meta-ads-landing .feature-text {
		order: 2;
		text-align: center;
	}

	.page-template-page-meta-ads-landing .feature-heading {
		font-size: 1.5rem !important;
	}

	.page-template-page-meta-ads-landing .micro-proof-content {
		padding: 1.25rem 2rem;
	}

	.page-template-page-meta-ads-landing .micro-proof-stat {
		font-size: 2rem;
        margin-top: 2rem;
	}

	.page-template-page-meta-ads-landing .micro-proof-text {
		font-size: 0.9rem;
	}
}

/* 2) General section spacing refinements below hero */

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:not(:first-of-type):not(.meta-ads-problem-solution):not(.meta-ads-features-alternating) {
    max-width: 720px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group + p {
    /* kill stray empty paragraphs between sections */
    margin: 0;
}

/* 3) FAQ styling – stronger separation of Q & A */

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type h2 {
    margin-bottom: 1.75rem;
}

/* Each Q/A pair is a group with two paragraphs: first = question, second = answer */
.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type > .wp-block-group {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background-color: #f9fafb;
    border: 1px solid rgba(148, 163, 184, 0.35);
    margin-bottom: 1.25rem;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type > .wp-block-group p:first-child {
    font-weight: 650;
    margin-bottom: 0.5rem;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type > .wp-block-group p:first-child strong {
    font-weight: 700;
}

.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type > .wp-block-group p:last-child {
    color: #4b5563;
    line-height: 1.55;
}

/* Inline emphasis in FAQ answers */
.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type p strong {
    color: #111827;
}

/* 4) Responsive tweaks */
@media (max-width: 768px) {
    .page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type {
        border-radius: 20px;
    }

	.page-template-page-meta-ads-landing .meta-ads-header,
	.page-template-page-prepare-setup .meta-ads-header {
		padding: 1rem 1.25rem !important;
	}

	.page-template-page-meta-ads-landing .meta-ads-hero-split {
		padding: 2rem 1.25rem 2.5rem;
	}

	.page-template-page-cold-email-landing .meta-ads-hero-split {
		/* Keep vertical padding symmetric so centering stays visually centered */
		padding: 2rem 1.25rem;
	}

	.page-template-page-meta-ads-landing .social-proof-avatar {
		width: 36px;
		height: 36px;
		margin-left: -10px;
		border-width: 2px;
	}

	.page-template-page-meta-ads-landing .social-proof-stars {
		font-size: 1rem;
	}

	.page-template-page-meta-ads-landing .social-proof-text {
		font-size: 0.875rem;
	}

	.page-template-page-meta-ads-landing .meta-ads-hero-bullets {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:first-of-type a.wp-block-button__link {
		padding: 1rem 2.25rem;
		font-size: 1.05rem;
	}

    .page-template-page-meta-ads-landing main.wp-block-group > .wp-block-group:last-of-type > .wp-block-group {
        padding: 1rem 1.1rem;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Increase only the horizontal spacing between columns in feature rows */
.feature-row {
    column-gap: 8rem;
}

@media (max-width: 782px) {
    /* Keep mobile spacing behavior unchanged */
    .feature-row {
        column-gap: initial;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ===================================
   BLOG CARDS & META
   =================================== */
.cp-post-card {
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    border-color: rgba(0,0,0,0.06) !important;
}

.cp-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.12) !important;
}

.cp-post-meta {
    gap: 0.5rem;
    align-items: center;
}

.cp-post-meta a { text-decoration: none; }

/* Card media badge overlay */
.cp-card-media-wrapper { position: relative; }
.cp-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}

/* Query Loop image tweaks */
.cp-post-card .wp-block-post-featured-image img { object-fit: cover; }

/* Read more link as subtle button */
.cp-post-card .cp-read-more a {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    background: var(--wp--preset--color--base-2);
    text-decoration: none;
}
.cp-post-card .cp-read-more a:hover { 
    background: var(--wp--preset--color--gray-100); /* lighter gray for better contrast with link text */
    color: var(--wp--preset--color--primary) !important;
}

@media (max-width: 782px) {
    .cp-post-card:hover { transform: none; box-shadow: none; }
}

/* Single post title scale */
.cp-single-title {
    font-size: clamp(2.75rem, 4vw, 5.5rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.01em;
}

/* Fallback: enlarge post title on single views even without custom class */
.single .wp-block-post-title,
.single-post .wp-block-post-title {
    font-size: clamp(2.75rem, 4vw, 5.5rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.01em;
}

/* ===================================
   TYPOGRAPHY TWEAKS (scoped to post content)
   =================================== */
.single .wp-block-post-content .wp-block-heading,
.single-post .wp-block-post-content .wp-block-heading,
.single .wp-block-post-content h1,
.single .wp-block-post-content h2,
.single .wp-block-post-content h3,
.single .wp-block-post-content h4,
.single .wp-block-post-content h5,
.single .wp-block-post-content h6 {
    margin-bottom: 0.6em;
}

.single .wp-block-post-content .wp-block-heading + p,
.single-post .wp-block-post-content .wp-block-heading + p {
    margin-top: 0.25em;
}

/* ===================================
   PREPARE SETUP PAGE (Step 1 Capture)
   =================================== */

/* Animated Gradient Mesh Background */
@keyframes blob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}
@keyframes blob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(0.95); }
    66% { transform: translate(20px, -40px) scale(1.05); }
}
@keyframes blob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 20px) scale(1.08); }
    66% { transform: translate(-30px, -30px) scale(0.92); }
}

/* Page Wrapper */
.prepare-setup-page,
.page-template-page-prepare-setup .prepare-setup-page {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    padding: 2rem;
    margin-block-start: 0;
}

/* Ensure the body/html also has the background for full coverage */
.page-template-page-prepare-setup {
    background: linear-gradient(135deg, #fafbff 0%, #f5f5f7 50%, #f8f7ff 100%);
    position: relative;
    overflow-x: hidden;
}

/* Animated gradient blobs */
.page-template-page-prepare-setup::before,
.page-template-page-prepare-setup::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.page-template-page-prepare-setup::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: blob1 15s ease-in-out infinite;
}

.page-template-page-prepare-setup::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: blob2 18s ease-in-out infinite;
}

/* Third blob via the main element */
.page-template-page-prepare-setup .prepare-setup-page::before {
    content: '';
    position: fixed;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: blob3 20s ease-in-out infinite;
}

/* Transparent header on prepare-setup page */
.page-template-page-prepare-setup .meta-ads-header {
    background: transparent !important;
    position: relative;
    z-index: 10;
}

.prepare-setup-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Two Column Container */
.prepare-setup-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Left Column: Form Card */
.prepare-form-column {
    display: flex;
    justify-content: center;
}

.prepare-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    max-width: 480px;
    width: 100%;
}

/* Social Proof Strip */
.prepare-social-proof {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.prepare-avatars {
    display: flex;
}

.prepare-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    object-fit: cover;
}

.prepare-avatar:first-child {
    margin-left: 0;
}

.prepare-proof-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.prepare-stars {
    color: #fbbf24;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.prepare-proof-text {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

/* Step Badge */
.prepare-step-badge {
    display: inline-block;
    background: #EEF2FF;
    color: #4F46E5;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Title & Subtitle */
.prepare-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.prepare-subtitle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
}

/* Benefits List */
.prepare-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.prepare-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0;
    font-size: 0.95rem;
    color: #374151;
}

.benefit-check {
    color: #10B981;
    font-weight: 600;
}

/* Form */
.prepare-form {
    margin-bottom: 1.25rem;
}

.prepare-form-field {
    margin-bottom: 0.875rem;
}

.prepare-form-field input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.625rem;
    font-size: 1rem;
    color: #111827;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.prepare-form-field input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.prepare-form-field input::placeholder {
    color: #9ca3af;
}

/* CTA Button */
.prepare-cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: #ffffff;
    border: none;
    border-radius: 0.625rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.prepare-cta-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.prepare-cta-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Error */
.prepare-form-error {
    background: #FEF2F2;
    color: #DC2626;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

/* Trust Text */
.prepare-trust {
    text-align: center;
}

.prepare-trust p {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0.375rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.trust-icon {
    font-size: 0.875rem;
}

/* Right Column: Testimonial */
.prepare-testimonial-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.prepare-testimonial-card {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 2rem;
    max-width: 380px;
    position: relative;
}

.testimonial-quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: #E0E7FF;
    font-family: Georgia, serif;
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.testimonial-title {
    font-size: 0.85rem;
    color: #6b7280;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin: 0;
    font-style: normal;
    border: none;
    padding: 0;
}

.testimonial-quote strong {
    color: #4F46E5;
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .prepare-setup-page {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .prepare-setup-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .prepare-card {
        padding: 1.75rem;
    }
    
    .prepare-title {
        font-size: 1.5rem;
    }
    
    .prepare-testimonial-card {
        max-width: 100%;
    }
    
    .testimonial-quote-mark {
        font-size: 3.5rem;
    }
}