@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&family=Assistant:wght@200;300;400;500;600;700;800&family=Heebo:wght@300;400;500;600;700;800;900&family=Rubik:wght@300;400;500;600;700&family=Secular+One&display=swap);
@import url(https://unpkg.com/@phosphor-icons/web@2.0.3/src/regular/style.css);
/**
 * Promo Landing Page - Premium Styling
 * 
 * State-of-the-art design for cold outreach landing pages.
 * Features: Glassmorphism, smooth animations, premium typography.
 * Supports RTL languages (Hebrew).
 * 
 * @module promo/styles
 */

/* ============================================================================
   FONT & ICON IMPORTS
   ============================================================================ */

/* All required fonts: Inter (base), Plus Jakarta Sans (display), and Hebrew fonts */

/* Phosphor Icons */

/* ============================================================================
   DESIGN TOKENS
   ============================================================================ */

:root {
    /* Brand Colors - Dynamic via --promo-primary */
    --promo-primary: #6366f1;
    --promo-primary-dark: #4f46e5;
    --promo-primary-light: #818cf8;
    --promo-primary-glow: rgba(99, 102, 241, 0.4);
    
    /* Neutral Palette - Sophisticated grays */
    --promo-bg-dark: #0a0a0f;
    --promo-bg-card: rgba(255, 255, 255, 0.03);
    --promo-bg-card-hover: rgba(255, 255, 255, 0.06);
    --promo-border: rgba(255, 255, 255, 0.08);
    --promo-border-hover: rgba(255, 255, 255, 0.15);
    
    /* Text Colors */
    --promo-text-primary: #ffffff;
    --promo-text-secondary: rgba(255, 255, 255, 0.7);
    --promo-text-muted: rgba(255, 255, 255, 0.5);
    
    /* Accent Colors */
    --promo-success: #10b981;
    --promo-warning: #f59e0b;
    --promo-accent-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    
    /* Typography */
    --promo-font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --promo-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --promo-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Spacing */
    --promo-space-xs: 4px;
    --promo-space-sm: 8px;
    --promo-space-md: 16px;
    --promo-space-lg: 24px;
    --promo-space-xl: 32px;
    --promo-space-2xl: 48px;
    --promo-space-3xl: 64px;
    --promo-space-4xl: 96px;
    
    /* Border Radius */
    --promo-radius-sm: 8px;
    --promo-radius-md: 12px;
    --promo-radius-lg: 16px;
    --promo-radius-xl: 24px;
    --promo-radius-full: 9999px;
    
    /* Shadows */
    --promo-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --promo-shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --promo-shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --promo-shadow-glow: 0 0 60px var(--promo-primary-glow);
    
    /* Transitions */
    --promo-transition-fast: 150ms ease;
    --promo-transition-normal: 250ms ease;
    --promo-transition-slow: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--promo-bg-dark);
    color: var(--promo-text-primary);
    font-family: var(--promo-font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

#promo-root {
    min-height: 100vh;
}

/* ============================================================================
   LOADING STATE
   ============================================================================ */

.promo-loading {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--promo-space-lg);
}

.promo-loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--promo-border);
    border-top-color: var(--promo-primary);
    border-radius: 50%;
    animation: promo-spin 1s linear infinite;
}

.promo-loading-text {
    color: var(--promo-text-secondary);
    font-size: 1rem;
}

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

/* ============================================================================
   ERROR STATE
   ============================================================================ */

.promo-error {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--promo-space-xl);
    gap: var(--promo-space-md);
}

.promo-error-icon {
    font-size: 4rem;
    color: var(--promo-warning);
}

.promo-error h2 {
    margin: 0;
    font-family: var(--promo-font-display);
    font-size: 1.5rem;
}

.promo-error p {
    color: var(--promo-text-secondary);
    margin: 0;
}

/* ============================================================================
   PAGE CONTAINER
   ============================================================================ */

.promo-page {
    min-height: 100vh;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================================================
   CHAMELEON THEME - brand tinted background + business vibe
   ============================================================================ */

.promo-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(1200px 600px at 15% 25%, color-mix(in srgb, var(--promo-primary) 18%, transparent) 0%, transparent 60%),
        radial-gradient(900px 500px at 85% 15%, color-mix(in srgb, var(--promo-primary) 14%, transparent) 0%, transparent 55%),
        radial-gradient(900px 650px at 50% 90%, color-mix(in srgb, var(--promo-primary) 10%, transparent) 0%, transparent 60%);
    opacity: 0.9;
}

.promo-page--restaurant::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(800px 500px at 20% 35%, rgba(255, 200, 120, 0.08), transparent 60%),
        radial-gradient(700px 450px at 75% 25%, rgba(140, 220, 255, 0.06), transparent 55%),
        radial-gradient(1100px 650px at 50% 100%, rgba(255, 255, 255, 0.04), transparent 60%);
}

.promo-page--retail::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        linear-gradient(transparent, transparent),
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 100% 100%, 26px 26px;
    opacity: 0.45;
}

.promo-page--ecommerce::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 500px at 30% 30%, rgba(255,255,255,0.04), transparent 60%),
        radial-gradient(1000px 600px at 70% 70%, rgba(255,255,255,0.03), transparent 60%);
    opacity: 0.7;
}

.promo-page--service::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(900px 500px at 35% 35%, rgba(255,255,255,0.05), transparent 60%),
        radial-gradient(700px 450px at 75% 25%, rgba(255,255,255,0.03), transparent 55%);
    opacity: 0.7;
}

.promo-page.promo-page-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Background Particles */
.promo-bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139, 92, 246, 0.1), transparent),
        radial-gradient(ellipse 40% 30% at 20% 70%, rgba(59, 130, 246, 0.08), transparent);
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

.promo-nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--promo-space-md) var(--promo-space-xl);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--promo-border);
    transition: background 0.3s ease;
}

.promo-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.promo-nav-logo img {
    height: 40px;
    width: auto;
}

.promo-nav-cta {
    padding: var(--promo-space-sm) var(--promo-space-lg);
    background: var(--promo-primary);
    color: var(--promo-primary-contrast, white);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: var(--promo-radius-full);
    transition: all var(--promo-transition-normal);
}

.promo-nav-cta:hover {
    background: var(--promo-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--promo-shadow-glow);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.promo-hero {
    min-height: calc(100vh - 80px); /* Fill viewport minus nav */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(var(--promo-space-xl), 5vw, var(--promo-space-3xl)); /* Tightened gap: 32px to 64px range */
    align-items: center; /* Vertically center content */
    padding: var(--promo-space-xl) var(--promo-space-xl);
    position: relative;
    z-index: 1;
    max-width: 1200px; /* max-w-6xl */
    margin: 0 auto;
}

.promo-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--promo-space-md);
    padding-top: 20px; /* Slight offset for visual balance */
}

/* Hero status pills */
.promo-hero-status {
    display: flex;
    flex-wrap: wrap;
    gap: var(--promo-space-sm);
    align-items: center;
    margin-bottom: var(--promo-space-xs); /* Tightened gap */
}

.promo-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--promo-radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--promo-border);
    color: var(--promo-text-secondary);
    font-size: 0.85rem;
    backdrop-filter: blur(14px);
}

.promo-status-pill i {
    color: var(--promo-primary-light);
}

.promo-status-pill-muted {
    opacity: 0.9;
}

.promo-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

/* Title */
.promo-hero-title {
    margin: 0;
    font-family: var(--promo-font-display);
    font-size: clamp(2rem, 4vw, 3.25rem); /* Reduced slightly for better laptop fit */
    font-weight: 800;
    line-height: 1.15;
    text-wrap: balance;
    max-width: 15ch; /* Encourage better line breaks */
    letter-spacing: -0.03em;
    padding-bottom: 0.05em;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.promo-hero-subtitle {
    margin: 0;
    font-size: 1.125rem; /* Slightly smaller for density */
    color: var(--promo-text-secondary);
    max-width: 500px;
}

.promo-hero-subtitle strong {
    color: var(--promo-text-primary);
    font-weight: 700;
}

/* Benefits List */
.promo-benefits {
    list-style: none;
    padding: 0;
    margin: var(--promo-space-md) 0;
    display: flex;
    flex-direction: column;
    gap: var(--promo-space-md);
}

.promo-benefit {
    display: flex;
    align-items: center;
    gap: var(--promo-space-md);
    font-size: 1rem;
    color: var(--promo-text-secondary);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    transition-delay: var(--delay, 0s);
}

.promo-page-loaded .promo-benefit {
    opacity: 1;
    transform: translateX(0);
}

.promo-benefit i {
    font-size: 1.25rem;
    color: var(--promo-success);
}

/* CTAs */
.promo-hero-ctas {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px; /* Exact gap-8 */
    margin-top: 40px; /* Exact mt-10 */
}

/* Social Proof */
.promo-social-proof {
    display: flex;
    align-items: center;
    gap: 12px; /* Exact gap-3 */
    margin-top: 48px; /* Exact mt-12 */
    color: var(--promo-text-muted);
    font-size: 0.875rem;
}

.promo-hero-demo-note {
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--promo-text-muted);
    opacity: 0.8;
}

.promo-avatars {
    display: flex;
    gap: 12px; /* gap-3 */
}

.promo-avatar {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--promo-radius-full);
    background: rgba(255, 255, 255, 0.1); /* bg-white/10 */
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2); /* ring-1 ring-white/20 */
    color: var(--promo-text-primary); /* text-white/gray-200 */
    font-size: 14px;
    transition: all var(--promo-transition-normal);
}

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

/* Hero Preview */
.promo-hero-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-height: 65vh; /* Constraint based on viewport height */
}

/* Colored brand glow behind phone */
.promo-hero-preview::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 500px;
    background: var(--phone-glow, var(--promo-primary));
    filter: blur(100px);
    opacity: 0.25;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================================================
   iPHONE MOCKUP - iPhone 15 Pro Style
   ============================================================================ */

.promo-iphone {
    position: relative;
    perspective: 1200px;
    z-index: 1;
    max-height: 65vh; /* Hard limit for phone */
    display: flex;
    align-items: center;
}

.promo-iphone-frame {
    width: auto;
    aspect-ratio: 290 / 600;
    max-height: 65vh; /* Match container constraint */
    background: #1c1c1e;
    border-radius: 54px;
    padding: 10px;
    box-shadow: 
        /* Titanium frame effect */
        0 0 0 2px #3a3a3c,
        0 0 0 4px #1c1c1e,
        /* Outer glow */
        0 30px 60px rgba(0,0,0,0.4),
        0 10px 20px rgba(0,0,0,0.3),
        /* Inner highlight */
        inset 0 1px 1px rgba(255,255,255,0.05);
    position: relative;
    overflow: visible;
    transform: rotateY(-8deg) rotateX(3deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-iphone:hover .promo-iphone-frame {
    transform: rotateY(-2deg) rotateX(1deg);
}

/* Dynamic Island */
.promo-iphone-dynamic-island {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* Screen */
.promo-iphone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 46px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Removed padding-top to allow content to fill entire screen */
}

.promo-iphone-screen iframe {
    width: 100%;
    height: 100%;
    flex: 1;
    border: none;
    filter: brightness(1.15); /* OLED pop effect */
    display: block;
}

/* Home Indicator */
.promo-iphone-home {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 2px;
    z-index: 10;
}

/* Side buttons - Volume */
.promo-iphone-frame::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 120px;
    width: 3px;
    height: 28px;
    background: #3a3a3c;
    border-radius: 2px 0 0 2px;
    box-shadow: 
        0 40px 0 #3a3a3c,
        0 75px 0 #3a3a3c;
}

/* Side button - Power */
.promo-iphone-frame::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 160px;
    width: 3px;
    height: 65px;
    background: #3a3a3c;
    border-radius: 0 2px 2px 0;
}

/* ============================================================================
   BUTTONS
   ============================================================================ */

.promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--promo-space-sm);
    padding: 12px var(--promo-space-xl); /* Tightened vertical padding from var(--promo-space-md) */
    font-family: var(--promo-font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--promo-radius-md);
    cursor: pointer;
    transition: all var(--promo-transition-normal);
    white-space: nowrap; /* Prevent text wrap */
}

.promo-btn i {
    font-size: 1.25rem;
}

.promo-btn-primary {
    background: linear-gradient(to right, var(--promo-primary-light), var(--promo-primary));
    color: var(--promo-primary-contrast, white);
    box-shadow: 0 0 20px color-mix(in srgb, var(--promo-primary) 40%, transparent); /* Clean primary glow */
}

.promo-btn-primary:hover {
    background: var(--promo-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--promo-primary-glow);
}

.promo-btn-secondary {
    background: transparent;
    color: var(--promo-text-secondary);
    border: 1px solid var(--promo-border);
    box-shadow: none;
}

.promo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--promo-border-hover);
    color: var(--promo-text-primary);
}

.promo-btn-large {
    padding: 16px 40px; /* Generous py-4 px-10 */
    font-size: 1.05rem;
}

/* ============================================================================
   SECTIONS
   ============================================================================ */

.promo-section {
    position: relative;
    z-index: 1;
    padding: var(--promo-space-4xl) var(--promo-space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.promo-section-header {
    text-align: center;
    margin-bottom: var(--promo-space-3xl);
}

.promo-section-tag {
    display: inline-block;
    padding: var(--promo-space-xs) var(--promo-space-md);
    background: var(--promo-bg-card);
    border: 1px solid var(--promo-border);
    border-radius: var(--promo-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--promo-primary-light);
    margin-bottom: var(--promo-space-md);
}

.promo-section-title {
    margin: 0 0 var(--promo-space-md);
    font-family: var(--promo-font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Typewriter Effect */
.promo-typewriter-wrapper {
    display: inline-flex;
    align-items: center;
    color: var(--promo-primary-light);
    white-space: nowrap; /* Prevent line breaks during animation */
    min-height: 1.2em;   /* Stabilize height */
    vertical-align: bottom;
}

.promo-typewriter {
    min-width: 2px;
    display: inline-block;
}

.promo-typewriter-cursor {
    margin-left: 2px;
    font-weight: 200;
    animation: promo-cursor-blink 1s step-end infinite;
}

@keyframes promo-cursor-blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.promo-section-desc {
    margin: 0;
    color: var(--promo-text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.promo-scratch-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--promo-space-sm);
    margin: 0;
    color: var(--promo-text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.promo-scratch-hint i {
    font-size: 1.25rem;
    color: var(--promo-primary-light);
}

/* ============================================================================
   CARDS + NEW SECTIONS (Why/What/Trust/Urgency)
   ============================================================================ */

.promo-why-grid,
.promo-what-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--promo-space-lg);
}

.promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--promo-radius-xl);
    padding: var(--promo-space-xl);
    box-shadow: var(--promo-shadow-md);
    backdrop-filter: blur(18px);
}

.promo-card-strong {
    background:
        radial-gradient(600px 280px at 10% 10%, color-mix(in srgb, var(--promo-primary) 14%, transparent) 0%, transparent 70%),
        rgba(255, 255, 255, 0.03);
}

.promo-card-header {
    display: flex;
    align-items: center;
    gap: var(--promo-space-sm);
    margin-bottom: var(--promo-space-md);
}

.promo-card-header i {
    color: var(--promo-primary-light);
    font-size: 1.2rem;
}

/* Gold star icon for reviews */
.promo-icon-gold {
    color: #fbbf24 !important;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.3));
}

.promo-card-header h3 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.promo-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);  /* Bumped from 0.75 for better legibility on black */
    line-height: 1.7;
    font-size: 0.95rem;
}

.promo-psychology-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-psychology-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--promo-radius-lg);
    border: 1px solid var(--promo-border);
    background: rgba(0,0,0,0.25);
    transition: all var(--promo-transition-normal);
}

.promo-psychology-row:hover {
    border-color: var(--promo-border-hover);
    background: rgba(255,255,255,0.04);
}

.promo-psychology-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--promo-primary-light);
    font-size: 1rem;
}

.promo-psychology-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--promo-text-secondary);
}

.promo-psychology-text strong {
    color: var(--promo-text-primary);
    margin-left: 4px;
}

/* RTL overrides for psychology list */
.promo-rtl .promo-psychology-row {
    flex-direction: row;
}

.promo-rtl .promo-psychology-icon {
    margin-left: 0;
    margin-right: 0;
}

.promo-rtl .promo-psychology-text {
    text-align: right;
}

.promo-rtl .promo-psychology-text strong {
    margin-left: 4px;
    margin-right: 0;
}

.promo-compare {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--promo-space-md);
}

.promo-compare-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: var(--promo-radius-lg);
    border: 1px solid var(--promo-border);
    background: rgba(0,0,0,0.25);
    color: var(--promo-text-secondary);
}

.promo-compare-row strong {
    color: var(--promo-text-primary);
    font-size: 1.05rem;
}

.promo-compare-row-low strong {
    color: var(--promo-text-muted);
}

.promo-compare-row-highlight {
    border-color: color-mix(in srgb, var(--promo-primary) 35%, var(--promo-border));
    background: color-mix(in srgb, var(--promo-primary) 12%, rgba(0,0,0,0.25));
}

.promo-percent-up {
    color: var(--promo-success) !important;
}

.promo-percent-up::before {
    content: '↑ ';
    font-size: 0.85em;
}

.promo-card-result {
    margin-top: var(--promo-space-md);
    padding-top: var(--promo-space-md);
    border-top: 1px solid var(--promo-border);
    display: grid;
    gap: 6px;
}

.promo-card-result-label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--promo-text-muted);
    font-weight: 700;
}

.promo-card-result strong {
    color: var(--promo-text-primary);
    font-weight: 700;
}

/* ============================================================================
   REVENUE FLOW SECTION - Horizontal Process Flow
   ============================================================================ */

.promo-flow-section {
    position: relative;
    overflow: hidden;
}

.promo-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 4vw, 48px);
    max-width: 1000px;
    margin: 0 auto;
}

.promo-flow-card {
    flex: 1;
    max-width: 400px;
    padding: var(--promo-space-2xl) var(--promo-space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-flow-card.promo-card-strong {
    background:
        radial-gradient(600px 280px at 10% 10%, color-mix(in srgb, var(--promo-primary) 14%, transparent) 0%, transparent 70%),
        rgba(255, 255, 255, 0.03);
}

.promo-flow-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    pointer-events: none;
}

.promo-flow-card-2 {
    transform: translateX(40px);
}

.promo-flow-card.promo-visible {
    opacity: 1;
    transform: translateX(0);
}

.promo-flow-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px color-mix(in srgb, var(--promo-primary) 20%, transparent),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.promo-flow-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--promo-space-xl);
    background: linear-gradient(135deg, var(--promo-primary-light) 0%, var(--promo-primary) 100%);
    border-radius: 24px; /* Squircle style */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 
        0 10px 25px color-mix(in srgb, var(--promo-primary) 40%, transparent),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.promo-flow-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.promo-flow-icon-action {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 
        0 10px 25px rgba(16, 185, 129, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.promo-flow-card h3 {
    margin: 0 0 var(--promo-space-md);
    font-family: var(--promo-font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--promo-text-primary);
    line-height: 1.2;
}

.promo-flow-card p {
    margin: 0;
    color: var(--promo-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    text-wrap: balance;
}

.promo-flow-card strong {
    color: var(--promo-primary-light);
    font-weight: 700;
}

/* Highlight stat in flow card */
.promo-highlight-stat {
    background: linear-gradient(135deg, var(--promo-primary-light) 0%, var(--promo-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.1em;
}

/* Flow Arrow */
.promo-flow-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 100px;
    opacity: 0;
    transition: all 0.5s ease 0.4s;
}

.promo-flow-arrow.promo-visible {
    opacity: 1;
}

.promo-flow-arrow-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin-top: 4px;
}

.promo-flow-arrow-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--promo-text-muted);
    background: rgba(255,255,255,0.05);
    padding: 4px 12px;
    border-radius: var(--promo-radius-full);
}

.promo-flow-arrow i {
    font-size: 1.75rem;
    color: var(--promo-primary-light);
    animation: promo-arrow-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px var(--promo-primary-glow));
}

@keyframes promo-arrow-pulse {
    0%, 100% { transform: translateX(0); opacity: 0.7; }
    50% { transform: translateX(5px); opacity: 1; }
}

/* RTL Flow */
.promo-rtl .promo-flow-container {
    flex-direction: row; /* Natural RTL order puts first child on the right */
}

.promo-rtl .promo-flow-card {
    transform: translateX(40px);
}

.promo-rtl .promo-flow-card-2 {
    transform: translateX(-40px);
}

.promo-rtl .promo-flow-arrow i {
    transform: scaleX(-1);
}

@keyframes promo-arrow-pulse-rtl {
    0%, 100% { transform: translateX(0) scaleX(-1); opacity: 0.7; }
    50% { transform: translateX(-5px) scaleX(-1); opacity: 1; }
}

.promo-rtl .promo-flow-arrow i {
    animation: promo-arrow-pulse-rtl 2s ease-in-out infinite;
}

/* Mobile Flow */
@media (max-width: 768px) {
    .promo-flow-container {
        flex-direction: column;
        gap: var(--promo-space-lg);
    }
    
    .promo-flow-card {
        max-width: 100%;
        transform: translateY(40px);
    }
    
    .promo-flow-card-2 {
        transform: translateY(40px);
    }
    
    .promo-flow-arrow {
        flex-direction: row;
        min-width: auto;
        gap: var(--promo-space-sm);
    }
    
    .promo-flow-arrow-line {
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--promo-primary-light) 50%, transparent 100%);
        display: block;
    }
    
    .promo-flow-arrow i {
        transform: rotate(90deg);
    }
    
    .promo-rtl .promo-flow-container {
        flex-direction: column;
    }
    
    .promo-rtl .promo-flow-card,
    .promo-rtl .promo-flow-card-2 {
        transform: translateY(40px);
    }
    
    .promo-rtl .promo-flow-arrow i {
        transform: rotate(90deg);
        animation: promo-arrow-pulse-mobile 2s ease-in-out infinite;
    }
    
    @keyframes promo-arrow-pulse-mobile {
        0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.7; }
        50% { transform: rotate(90deg) translateX(5px); opacity: 1; }
    }
}

.promo-trust-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
}

.promo-trust-item {
    display: flex;
    align-items: center;
    gap: var(--promo-space-md);
    padding: 14px 16px;
    border-radius: var(--promo-radius-xl);
    border: 1px solid var(--promo-border);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.75);  /* Increased contrast */
}

.promo-trust-item strong {
    color: var(--promo-text-primary);
}

.promo-trust-note {
    text-align: center;
    margin-top: var(--promo-space-xl);
    color: var(--promo-primary-light);
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Disclaimer Footer */
.promo-disclaimer {
    padding: var(--promo-space-2xl) var(--promo-space-xl);
    border-top: 1px solid var(--promo-border);
    background: rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

.promo-disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.promo-disclaimer p {
    font-size: 0.85rem;
    color: var(--promo-text-muted);
    line-height: 1.7;
    margin: 0;
    text-wrap: balance;
    opacity: 0.8;
}

/* Solid green check icon */
.promo-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #10b981;
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
}

.promo-check-icon i {
    color: white !important;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Color swatch for brand color display */
.promo-color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promo-color-swatch-ring {
    border: 1px solid rgba(255, 255, 255, 0.25);
    outline: 1px solid rgba(255, 255, 255, 0.1);
    outline-offset: 1px;
}

/* Scroll hint animation */
.promo-scroll-hint {
    margin-top: var(--promo-space-2xl);
    display: flex;
    justify-content: center;
    animation: promo-bounce 2s infinite;
}

@media (min-width: 1025px) {
    .promo-scroll-hint {
        justify-content: flex-start;
        padding-left: var(--promo-space-md);
    }
}

.promo-scroll-hint a {
    color: var(--promo-text-muted);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color var(--promo-transition-fast);
}

.promo-scroll-hint a:hover {
    color: var(--promo-primary-light);
}

@keyframes promo-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ============================================================================
   LIVE PREVIEW SECTION - Full Width Strip
   ============================================================================ */

.promo-preview-section {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.promo-preview-section .promo-section-header {
    padding: 0 var(--promo-space-xl);
}

.promo-live-preview {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--promo-space-lg);
}

.promo-live-preview iframe {
    width: 100%;
    height: 700px;
    border: none;
    background: #000;
}

.promo-live-preview-hint {
    display: flex;
    align-items: center;
    gap: var(--promo-space-sm);
    color: var(--promo-text-muted);
    font-size: 0.875rem;
    animation: promo-pulse 2s ease-in-out infinite;
}

@keyframes promo-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* ============================================================================
   MOCKUP GALLERY
   ============================================================================ */

.promo-gallery-section {
    /* Subtle noise texture for visual differentiation */
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 60%);
}

.promo-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--promo-space-xl);
}

/* Tabs */
.promo-gallery-tabs {
    display: flex;
    justify-content: center;
    gap: var(--promo-space-sm);
    padding: var(--promo-space-xs);
    background: var(--promo-bg-card);
    border-radius: var(--promo-radius-full);
    border: 1px solid var(--promo-border);
    width: fit-content;
    margin: 0 auto;
}

.promo-gallery-tab {
    display: flex;
    align-items: center;
    gap: var(--promo-space-sm);
    padding: var(--promo-space-sm) var(--promo-space-lg);
    background: transparent;
    border: none;
    border-radius: var(--promo-radius-full);
    color: var(--promo-text-secondary);
    font-family: var(--promo-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--promo-transition-normal);
}

.promo-gallery-tab:hover {
    color: var(--promo-text-primary);
}

.promo-gallery-tab.active {
    background: var(--promo-primary);
    color: var(--promo-primary-contrast, white);
}

/* Panels */
.promo-gallery-panel {
    display: none;
}

.promo-gallery-panel.active {
    display: block;
    animation: promo-fade-in 0.3s ease;
}

@keyframes promo-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mockup Selector */
.promo-mockup-selector {
    display: flex;
    justify-content: center;
    gap: var(--promo-space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--promo-space-xl);
}

.promo-mockup-chip {
    display: flex;
    align-items: center;
    gap: var(--promo-space-sm);
    padding: var(--promo-space-sm) var(--promo-space-md);
    background: var(--promo-bg-card);
    border: 1px solid var(--promo-border);
    border-radius: var(--promo-radius-md);
    color: var(--promo-text-secondary);
    font-family: var(--promo-font-body);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--promo-transition-normal);
}

.promo-mockup-chip:hover {
    border-color: var(--promo-border-hover);
    color: var(--promo-text-primary);
}

.promo-mockup-chip.active {
    background: var(--promo-primary);
    border-color: var(--promo-primary);
    color: var(--promo-primary-contrast, white);
}

/* Mockup Stage */
.promo-mockup-stage {
    display: flex;
    justify-content: center;
}

.promo-mockup-container {
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: var(--promo-radius-xl);
    overflow: hidden;
    box-shadow: var(--promo-shadow-lg);
}

.promo-mockup-bg {
    width: 100%;
    height: auto;
    display: block;
}

.promo-mockup-qr-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5%;
}

.promo-mockup-logo {
    width: 40%;
    height: auto;
    object-fit: contain;
}

.promo-mockup-qr {
    width: 100%;
    height: auto;
}

/* Digital Grid */
.promo-digital-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--promo-space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.promo-digital-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--promo-space-md);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.promo-digital-mockup.promo-visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-digital-frame {
    width: 100%;
    max-width: 280px;
    background: var(--promo-bg-card);
    border: 1px solid var(--promo-border);
    border-radius: var(--promo-radius-lg);
    overflow: hidden;
}

.promo-digital-label {
    font-size: 0.875rem;
    color: var(--promo-text-muted);
    font-weight: 500;
}

/* Instagram Mockup */
.promo-digital-instagram .promo-digital-header {
    display: flex;
    align-items: center;
    gap: var(--promo-space-sm);
    padding: var(--promo-space-md);
    border-bottom: 1px solid var(--promo-border);
}

.promo-digital-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--promo-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    overflow: hidden;
}

.promo-digital-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-digital-content {
    aspect-ratio: 1;
    position: relative;
    background: #1a1a22;
}

.promo-digital-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-digital-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    font-size: 1.25rem;
    font-weight: 600;
}

.promo-digital-engagement {
    display: flex;
    gap: var(--promo-space-md);
    padding: var(--promo-space-md);
    font-size: 1.25rem;
    color: var(--promo-text-secondary);
}

/* Email Mockup */
.promo-email-frame {
    padding: 0;
}

.promo-email-header {
    padding: var(--promo-space-sm) var(--promo-space-md);
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid var(--promo-border);
}

.promo-email-dots {
    display: flex;
    gap: 6px;
}

.promo-email-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--promo-border);
}

.promo-email-dots span:first-child { background: #ff5f57; }
.promo-email-dots span:nth-child(2) { background: #ffbd2e; }
.promo-email-dots span:last-child { background: #28ca41; }

.promo-email-content {
    padding: var(--promo-space-lg);
}

.promo-email-subject {
    display: flex;
    align-items: center;
    gap: var(--promo-space-sm);
    font-weight: 600;
    margin-bottom: var(--promo-space-md);
}

.promo-email-subject i {
    color: var(--promo-primary);
}

.promo-email-content p {
    color: var(--promo-text-secondary);
    font-size: 0.875rem;
    margin: 0 0 var(--promo-space-md);
}

.promo-email-cta {
    display: block;
    width: 100%;
    padding: var(--promo-space-sm) var(--promo-space-md);
    background: var(--promo-primary);
    color: white;
    border: none;
    border-radius: var(--promo-radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
}

/* SMS Mockup */
.promo-sms-frame {
    padding: var(--promo-space-lg);
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.promo-sms-bubble {
    background: var(--promo-primary);
    padding: var(--promo-space-md);
    border-radius: var(--promo-radius-lg);
    border-bottom-left-radius: 4px;
    max-width: 90%;
}

.promo-sms-bubble p {
    margin: 0;
    font-size: 0.875rem;
}

.promo-sms-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    word-break: break-all;
    margin-top: var(--promo-space-xs) !important;
}

.promo-sms-time {
    display: block;
    margin-top: var(--promo-space-sm);
    font-size: 0.75rem;
    color: var(--promo-text-muted);
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */

.promo-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--promo-space-lg);
    flex-wrap: wrap;
}

.promo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.promo-step.promo-visible {
    opacity: 1;
    transform: translateY(0);
}

.promo-step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--promo-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-step-icon {
    width: 80px;
    height: 80px;
    background: var(--promo-bg-card);
    border: 1px solid var(--promo-border);
    border-radius: var(--promo-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--promo-primary-light);
    margin-bottom: var(--promo-space-md);
    position: relative;
}

.promo-step h3 {
    margin: 0 0 var(--promo-space-sm);
    font-family: var(--promo-font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

.promo-step p {
    margin: 0;
    color: var(--promo-text-secondary);
    font-size: 0.875rem;
}

.promo-step-connector {
    display: flex;
    align-items: center;
    color: var(--promo-text-muted);
    font-size: 1.5rem;
    margin-top: 40px;
}

/* ============================================================================
   FINAL CTA SECTION
   ============================================================================ */

.promo-cta-section {
    padding: var(--promo-space-4xl) var(--promo-space-xl);
}

.promo-cta-card {
    position: relative;
    background: var(--promo-bg-card);
    border: 1px solid var(--promo-border);
    border-radius: var(--promo-radius-xl);
    padding: var(--promo-space-4xl);
    text-align: center;
    overflow: hidden;
}

.promo-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: var(--promo-primary);
    filter: blur(150px);
    opacity: 0.15;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.promo-cta-card h2 {
    position: relative;
    margin: 0 0 var(--promo-space-md);
    font-family: var(--promo-font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
}

.promo-cta-card p {
    position: relative;
    margin: 0 0 var(--promo-space-xl);
    color: var(--promo-text-secondary);
    font-size: 1.125rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.promo-cta-subtitle {
    max-width: 800px !important;
}

.promo-cta-warning {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 20px;
    margin: 0 auto var(--promo-space-xl);
    border-radius: var(--promo-radius-xl);
    border: 1px solid color-mix(in srgb, var(--promo-primary) 25%, var(--promo-border));
    background: color-mix(in srgb, var(--promo-primary) 10%, rgba(0,0,0,0.25));
    color: var(--promo-text-secondary);
    text-align: left;
    font-size: 0.9rem;
}

.promo-cta-warning i {
    color: var(--promo-primary-light);
    font-size: 1.1rem;
    margin-top: 2px;
}

.promo-cta-warning strong {
    color: var(--promo-text-primary);
}

.promo-cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: var(--promo-space-xl);
}

.promo-cta-trust {
    position: relative;
    display: flex;
    justify-content: center;
    gap: var(--promo-space-xl);
    flex-wrap: wrap;
    color: var(--promo-text-muted);
    font-size: 0.875rem;
}

.promo-cta-trust span {
    display: flex;
    align-items: center;
    gap: var(--promo-space-xs);
}

.promo-cta-trust i {
    color: var(--promo-success);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.promo-footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--promo-border);
    padding: var(--promo-space-xl);
}

.promo-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--promo-space-md);
}

.promo-footer-logo {
    display: inline-block;
    text-decoration: none;
    margin-bottom: var(--promo-space-md);
}

.promo-footer-logo img {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: opacity var(--promo-transition-normal);
}

.promo-footer-logo:hover img {
    opacity: 1;
}

.promo-footer p {
    margin: 0;
    color: var(--promo-text-muted);
    font-size: 0.875rem;
}

.promo-footer-links {
    display: flex;
    gap: var(--promo-space-lg);
}

.promo-footer-links a {
    color: var(--promo-text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--promo-transition-fast);
}

.promo-footer-links a:hover {
    color: var(--promo-text-primary);
}

/* ============================================================================
   CLAIM MODAL
   ============================================================================ */

/* Overlay with heavy backdrop blur - lets prize card peek through */
.signup-prompt-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: claimFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.signup-prompt-overlay.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes claimFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal card - Premium dark gradient */
.signup-prompt-modal {
    background: linear-gradient(145deg, #1F1F2E 0%, #151520 100%);
    border-radius: 28px;
    padding: 48px 44px;
    max-width: 460px;
    width: 90%;
    box-shadow: 
        0 40px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    animation: claimSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes claimSlideUp {
    from { transform: translateY(40px) scale(0.96); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

/* Close button - Muted and subtle */
.signup-prompt-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #9CA3AF; /* Muted Grey */
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.signup-prompt-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #D1D5DB;
    opacity: 1;
}

/* Header section */
.signup-prompt-header {
    text-align: center;
    margin-bottom: 28px;
}

.signup-prompt-header h2 {
    font-size: 26px;
    font-weight: 700; /* Bold as requested */
    color: #FFFFFF;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Sparkle/Rocket icon - matches studio iconography */
.signup-header-icon {
    font-size: 28px;
    color: #FBBF24;
    animation: claimSparkle 2s ease-in-out infinite;
}

.signup-prompt-rtl .signup-header-icon {
    color: #FBBF24;
}

@keyframes claimSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.15) rotate(10deg); opacity: 0.85; }
}

/* Value proposition text */
.signup-value-prop {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400; /* Regular as requested */
    line-height: 1.6; /* As requested */
    margin: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.signup-prompt-rtl .signup-value-prop {
    max-width: 450px;
}

/* Content section */
.signup-prompt-content {
    margin-top: 8px;
}

/* Primary CTA Button - High Energy */
.signup-btn {
    width: 100%;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 800; /* ExtraBold */
    font-family: var(--promo-font-body);
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.signup-btn-google {
    background: #FFFFFF;
    color: #111827;
    box-shadow: 
        0 8px 24px rgba(255, 255, 255, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.signup-btn-google:hover {
    background: #F9FAFB;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(255, 255, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.25);
}

.signup-btn-google:active {
    transform: translateY(-1px);
}

.signup-btn-google img {
    flex-shrink: 0;
}

.signup-btn-google span {
    flex: 1;
    text-align: center;
    margin: 0;
}

/* Footer - Trust signal */
.signup-prompt-footer {
    text-align: center;
    margin-top: 24px;
}

.signup-trust-signal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.signup-trust-signal i {
    font-size: 14px;
    color: #22C55E; /* Green checkmark */
}

/* Loading state */
.animate-spin {
    animation: claimSpin 1s linear infinite;
}

@keyframes claimSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Button loading state adjustment */
.signup-btn-google:disabled {
    opacity: 0.85;
    cursor: not-allowed;
    transform: none;
}

/* RTL Support for Claim Modal */
.signup-prompt-rtl {
    direction: rtl;
    text-align: right;
}

.signup-prompt-rtl .signup-prompt-close {
    right: auto;
    left: 16px;
}

.signup-prompt-rtl .signup-prompt-header {
    text-align: center;
}

.signup-prompt-rtl .signup-prompt-header h2 {
    flex-direction: row-reverse;
}

.signup-prompt-rtl .signup-value-prop {
    text-align: center;
}

.signup-prompt-rtl .signup-btn-google {
    flex-direction: row-reverse;
}

.signup-prompt-rtl .signup-btn-google span {
    margin: 0;
}

.signup-prompt-rtl .signup-trust-signal {
    flex-direction: row-reverse;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1024px) {
    .promo-hero {
        grid-template-columns: 1fr;
        gap: var(--promo-space-2xl);
        padding: calc(80px + var(--promo-space-2xl)) var(--promo-space-xl) var(--promo-space-2xl);
    }
    
    .promo-hero-content {
        text-align: center;
        align-items: center;
    }
    
    .promo-hero-subtitle {
        max-width: none;
    }
    
    .promo-benefits {
        align-items: center;
    }
    
    .promo-hero-preview {
        order: -1;
    }
    
    .promo-iphone-frame {
        transform: none;
    }
    
    .promo-digital-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .promo-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-step-connector {
        transform: rotate(90deg);
        margin: 0;
    }
}

@media (max-width: 768px) {
    .promo-nav {
        padding: var(--promo-space-sm) var(--promo-space-md);
    }
    
    .promo-nav-logo img {
        height: 34px;
    }
    
    .promo-hero {
        padding: calc(70px + var(--promo-space-xl)) var(--promo-space-md) var(--promo-space-xl);
    }
    
    .promo-section {
        padding: var(--promo-space-2xl) var(--promo-space-md);
    }
    
    .promo-hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .promo-btn {
        width: 100%;
        justify-content: center;
    }

    .promo-why-grid,
    .promo-what-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-iphone-frame {
        width: 270px;
        height: 560px;
        border-radius: 46px;
    }
    
    .promo-live-preview iframe {
        height: 600px;
    }
    
    .promo-iphone-screen {
        border-radius: 35px;
    }
    
    .promo-gallery-tabs {
        width: 100%;
    }
    
    .promo-gallery-tab {
        flex: 1;
        justify-content: center;
    }
    
    .promo-mockup-selector {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: var(--promo-space-sm);
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .promo-mockup-chip {
        flex-shrink: 0;
    }
    
    .promo-cta-card {
        padding: var(--promo-space-2xl) var(--promo-space-lg);
    }
    
    .promo-cta-trust {
        flex-direction: column;
        gap: var(--promo-space-sm);
    }
    
    .promo-social-proof {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .promo-hero-title {
        font-size: 2rem;
    }
    
    .promo-section-title {
        font-size: 1.5rem;
    }
    
    .promo-iphone-frame {
        width: 240px;
        height: 500px;
        border-radius: 40px;
    }
    
    .promo-live-preview iframe {
        height: 500px;
    }
}

/* ============================================================================
   RTL (Right-to-Left) SUPPORT - Hebrew
   ============================================================================ */

/* Base RTL direction */
.promo-rtl {
    direction: rtl;
    text-align: right;
}

/* Hebrew-specific font stack */
.promo-rtl,
[lang="he"] {
    --promo-font-display: 'Assistant', 'Rubik', 'Secular One', -apple-system, BlinkMacSystemFont, sans-serif;
    --promo-font-body: 'Assistant', 'Heebo', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Navigation RTL - Logo on Right, CTA on Left */
/* row-reverse puts first item (logo) on right, second item (button) on left */
.promo-rtl .promo-nav {
    flex-direction: row-reverse !important;
}

/* Hero section RTL */
.promo-rtl .promo-hero-content {
    text-align: right;
}

.promo-rtl .promo-hero-ctas {
    justify-content: flex-start;
    flex-direction: row;
}

/* Status pills RTL */
.promo-rtl .promo-hero-status {
    justify-content: flex-start;
}

.promo-rtl .promo-status-pill {
    flex-direction: row;
}

.promo-rtl .promo-status-pill i {
    margin-left: var(--promo-space-xs);
    margin-right: 0;
}

/* Buttons RTL - Icon on the Left of text in RTL */
.promo-rtl .promo-btn {
    flex-direction: row;
}

.promo-rtl .promo-btn i {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

/* Flip directional icons in RTL */
.promo-rtl .ph-play,
.promo-rtl .ph-rocket-launch,
.promo-rtl .ph-caret-right,
.promo-rtl .ph-arrow-right {
    transform: scaleX(-1);
}

/* Social proof RTL */
.promo-rtl .promo-social-proof {
    justify-content: flex-start;
}

.promo-rtl .promo-avatars {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

/* Cards RTL */
.promo-rtl .promo-card-header {
    flex-direction: row;
    text-align: right;
}

.promo-rtl .promo-card-header i {
    margin-left: var(--promo-space-md);
    margin-right: 0;
}

.promo-rtl .promo-card p {
    text-align: right;
}

/* Compare rows RTL */
.promo-rtl .promo-compare-row {
    flex-direction: row;
}

/* Trust section RTL */
.promo-rtl .promo-trust-item {
    flex-direction: row;
    text-align: right;
    justify-content: flex-start;
}

.promo-rtl .promo-check-icon {
    margin-left: var(--promo-space-md);
    margin-right: 0;
}

/* Color swatches RTL */
.promo-rtl .promo-color-swatch {
    margin-left: var(--promo-space-xs);
    margin-right: 0;
}

/* CTA section RTL - Keep centered for impact */
.promo-rtl .promo-cta-card {
    text-align: center !important;
}

.promo-rtl .promo-cta-warning {
    flex-direction: row;
    text-align: center !important;
    justify-content: center;
}

.promo-rtl .promo-cta-warning i {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

.promo-rtl .promo-cta-trust {
    flex-direction: row;
    justify-content: center;
}

.promo-rtl .promo-cta-trust span {
    flex-direction: row;
}

.promo-rtl .promo-cta-trust i {
    margin-left: var(--promo-space-xs);
    margin-right: 0;
}

/* Gallery tabs RTL */
.promo-rtl .promo-gallery-tab {
    flex-direction: row-reverse;
}

.promo-rtl .promo-gallery-tab i {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

/* Mockup selector RTL */
.promo-rtl .promo-mockup-selector {
    flex-direction: row-reverse;
}

.promo-rtl .promo-mockup-chip {
    flex-direction: row-reverse;
}

.promo-rtl .promo-mockup-chip i {
    margin-left: var(--promo-space-xs);
    margin-right: 0;
}

/* Digital mockups RTL */
.promo-rtl .promo-digital-header {
    flex-direction: row;
}

.promo-rtl .promo-digital-avatar {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

.promo-rtl .promo-digital-engagement {
    flex-direction: row;
}

.promo-rtl .promo-email-subject {
    flex-direction: row;
    text-align: right;
}

.promo-rtl .promo-email-subject i {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

.promo-rtl .promo-email-content {
    text-align: right;
}

.promo-rtl .promo-sms-bubble {
    text-align: right;
}

/* Section headers RTL - Keep centered for balance */
.promo-rtl .promo-section-header {
    text-align: center !important;
}

.promo-rtl .promo-section-tag {
    margin-left: auto !important;
    margin-right: auto !important;
}

.promo-rtl .promo-section-title,
.promo-rtl .promo-section-desc,
.promo-rtl .promo-scratch-hint {
    text-align: center !important;
}

.promo-rtl .promo-scratch-hint {
    flex-direction: row;
}

.promo-rtl .promo-scratch-hint i {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

/* Preview hint RTL */
.promo-rtl .promo-live-preview-hint {
    flex-direction: row-reverse;
}

.promo-rtl .promo-live-preview-hint i {
    margin-left: var(--promo-space-sm);
    margin-right: 0;
}

/* Disclaimer RTL */
.promo-rtl .promo-disclaimer-content {
    text-align: center;
}

/* Card result RTL */
.promo-rtl .promo-card-result {
    text-align: right;
}

/* Hero grid RTL - swap phone and text positions */
/* In Hebrew: Text on RIGHT (Start), Phone on LEFT (Visual) */
@media (min-width: 1024px) {
    .promo-rtl .promo-hero {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Force text to column 1 (Right side in RTL) */
    .promo-rtl .promo-hero-content {
        grid-column: 1;
        grid-row: 1;
        text-align: right;
    }
    
    /* Force phone to column 2 (Left side in RTL) */
    .promo-rtl .promo-hero-preview {
        grid-column: 2;
        grid-row: 1;
    }
}

/* Error and loading states RTL */
.promo-rtl.promo-error,
.promo-rtl.promo-loading {
    text-align: center;
}

/* Typewriter RTL */
.promo-rtl .promo-typewriter-wrapper {
    display: inline-flex;
    flex-direction: row-reverse;
}

.promo-rtl .promo-typewriter-cursor {
    margin-right: 2px;
    margin-left: 0;
}

/* Mobile RTL adjustments */
@media (max-width: 768px) {
    .promo-rtl .promo-social-proof {
        flex-direction: column;
        align-items: center;
    }
    
    .promo-rtl .promo-avatars {
        margin-left: 0;
        margin-bottom: var(--promo-space-sm);
    }
    
    .promo-rtl .promo-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }
}

/* RTL-aware transitions - prevent layout jank */
.promo-rtl * {
    transition-property: color, background-color, border-color, box-shadow, opacity, transform;
}

