/**
 * Promo Pages Styles - Enhanced Version
 * 
 * Modern, conversion-focused design for Feedback and Roadmap promo pages
 * Uses CSS variables from admin-global.css for consistency
 */

/* ===============================================
   Animations
   =============================================== */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===============================================
   Promo Container
   =============================================== */
.cha-promo-wrap {
    max-width: 1100px;
    margin: 20px auto 40px;
    padding-right: 20px;
    animation: fadeInUp 0.6s ease-out;
}

/* ===============================================
   Hero Section - Mesh Gradient Header
   =============================================== */
.cha-promo-hero {
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 50% 100%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #0f0a1e 0%, #1a1444 25%, #231c5e 50%, #1a1444 75%, #0f0a1e 100%);
    border-radius: 20px 20px 0 0;
    padding: 64px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative floating orbs */
.cha-promo-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    filter: blur(20px);
}

.cha-promo-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
    border-radius: 50%;
    animation: floatReverse 12s ease-in-out infinite;
    filter: blur(25px);
}

.cha-promo-hero > * {
    position: relative;
    z-index: 1;
}

/* Premium Badge */
.cha-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(139, 92, 246, 0.4));
    border: 1px solid rgba(165, 180, 252, 0.5);
    border-radius: 24px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.cha-promo-badge svg {
    color: #fbbf24;
}

.cha-promo-hero-title {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #fff;
    margin: 0 0 16px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.5px ;
}

.cha-promo-hero-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cha-promo-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Primary CTA - Animated */
.cha-promo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
    border: none;
    cursor: pointer;
}

.cha-promo-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    color: #fff !important;
    animation: none;
}



.cha-promo-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cha-promo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #fff !important;
}



/* ===============================================
   Trust Bar - Social Proof
   =============================================== */
.cha-promo-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 40px;
    background: linear-gradient(to right, #f8fafc, #fff, #f8fafc);
    border-bottom: 1px solid var(--cha-border);
}

.cha-promo-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--cha-text-secondary);
}

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

.cha-promo-trust-stars {
    display: flex;
    gap: 2px;
}

.cha-promo-trust-stars svg {
    fill: #fbbf24;
    color: #fbbf24;
}

.cha-promo-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #dcfce7;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
}


/* ===============================================
   Main Content Card
   =============================================== */
.cha-promo-content {
    background: #fff;
    border: 1px solid var(--cha-border);
    border-top: none;
    border-radius: 0 0 20px 20px;
    padding: 0;
    overflow: hidden;
}

/* ===============================================
   Preview Showcase Section
   =============================================== */
.cha-promo-showcase {
    padding: 48px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--cha-border);
    text-align: center;
}

.cha-promo-showcase-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(135deg, var(--cha-primary), var(--cha-primary-dark));
    border-radius: 16px;
    box-shadow: var(--cha-shadow-lg);
}

.cha-promo-showcase-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cha-promo-showcase-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* ===============================================
   Overview Section with Stats
   =============================================== */
.cha-promo-overview {
    padding: 40px;
    border-bottom: 1px solid var(--cha-border);
}

.cha-promo-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.cha-promo-section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 14px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.cha-promo-section-icon svg {
    color: #fff;
}

.cha-promo-section-icon.green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cha-promo-section-icon.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cha-promo-section-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--cha-text-primary);
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.cha-promo-section-subtitle {
    font-size: 15px;
    color: var(--cha-text-secondary);
    margin: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Cards - Enhanced */
.cha-promo-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cha-promo-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    background: linear-gradient(145deg, #fff, #f9fafb);
    border: 1px solid var(--cha-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: default;
}

.cha-promo-stat:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: var(--cha-primary-light);
}

.cha-promo-stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}



.cha-promo-stat-icon.blue {
    background: linear-gradient(145deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.cha-promo-stat-icon.green {
    background: linear-gradient(145deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.cha-promo-stat-icon.purple {
    background: linear-gradient(145deg, #e9d5ff, #d8b4fe);
    color: #7c3aed;
}

.cha-promo-stat-icon.orange {
    background: linear-gradient(145deg, #ffedd5, #fed7aa);
    color: #ea580c;
}

.cha-promo-stat-content {
    display: flex;
    flex-direction: column;
}

.cha-promo-stat-value {
    font-size: 26px;
    font-weight: 700;
    color: var(--cha-text-primary);
    line-height: 1.2;
}

.cha-promo-stat-label {
    font-size: 13px;
    color: var(--cha-text-secondary);
    margin-top: 2px;
}

/* ===============================================
   Feature Modules Grid - Enhanced
   =============================================== */
.cha-promo-modules {
    padding: 48px 40px;
    border-bottom: 1px solid var(--cha-border);
}

.cha-promo-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.cha-promo-module {
    padding: 28px;
    background: linear-gradient(145deg, #fff, #fafbfc);
    border: 1px solid var(--cha-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cha-promo-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cha-primary), var(--cha-success));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cha-promo-module:hover {
    border-color: var(--cha-primary-light);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.12);
}

.cha-promo-module:hover::before {
    opacity: 1;
}

.cha-promo-module-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.cha-promo-module-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cha-promo-module:hover .cha-promo-module-icon {
    transform: scale(1.1);
}



.cha-promo-module-icon.blue {
    background: linear-gradient(145deg, #dbeafe, #bfdbfe);
    color: #2563eb;
}

.cha-promo-module-icon.green {
    background: linear-gradient(145deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.cha-promo-module-icon.purple {
    background: linear-gradient(145deg, #e9d5ff, #d8b4fe);
    color: #7c3aed;
}

.cha-promo-module-icon.orange {
    background: linear-gradient(145deg, #ffedd5, #fed7aa);
    color: #ea580c;
}

.cha-promo-module-icon.pink {
    background: linear-gradient(145deg, #fce7f3, #fbcfe8);
    color: #db2777;
}

.cha-promo-module-icon.cyan {
    background: linear-gradient(145deg, #cffafe, #a5f3fc);
    color: #0891b2;
}

.cha-promo-module-info {
    flex: 1;
}

.cha-promo-module-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--cha-text-primary);
    margin: 0 0 6px;
}

.cha-promo-module-desc {
    font-size: 14px;
    color: var(--cha-text-secondary);
    margin: 0;
    line-height: 1.6;
}

.cha-promo-module-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--cha-border-light);
}

.cha-promo-module-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4b5563;
}

.cha-promo-module-feature svg {
    color: var(--cha-success);
    flex-shrink: 0;
}

/* ===============================================
   Comparison Table Section
   =============================================== */
.cha-promo-comparison {
    padding: 48px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-bottom: 1px solid var(--cha-border);
}

.cha-promo-comparison-table {
    max-width: 700px;
    margin: 32px auto 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--cha-border);
    box-shadow: var(--cha-shadow-md);
}

.cha-promo-comparison-header {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 0;
    background: linear-gradient(135deg, #1a1444, #231c5e);
    color: #fff;
}

.cha-promo-comparison-header-cell {
    padding: 18px 20px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.cha-promo-comparison-header-cell:first-child {
    text-align: left;
}

.cha-promo-comparison-header-cell.pro {
    background: linear-gradient(135deg, var(--cha-success), #059669);
    position: relative;
}

.cha-promo-comparison-header-cell.pro::before {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 10px;
    background: #fbbf24;
    color: #000;
    font-size: 9px;
    font-weight: 800;
    border-radius: 0 0 8px 8px;
    letter-spacing: 0.5px;
    line-height: 12px;
}

.cha-promo-comparison-row {
    display: grid;
    grid-template-columns: 1fr 120px 120px;
    gap: 0;
    border-bottom: 1px solid var(--cha-border);
    background: #fff;
    transition: background 0.2s ease;
}

.cha-promo-comparison-row:hover {
    background: #f9fafb;
}

.cha-promo-comparison-row:last-child {
    border-bottom: none;
}

.cha-promo-comparison-cell {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--cha-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cha-promo-comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 500;
}

.cha-promo-comparison-cell svg {
    height: 20px;
    width: 20px;
}

.cha-promo-comparison-cell svg.check {
    color: var(--cha-success);
}

.cha-promo-comparison-cell svg.cross {
    color: #d1d5db;
}

/* ===============================================
   Testimonials Section
   =============================================== */
.cha-promo-testimonials {
    padding: 48px 40px;
    border-bottom: 1px solid var(--cha-border);
}

.cha-promo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.cha-promo-testimonial {
    padding: 28px;
    background: linear-gradient(145deg, #fff, #fafbfc);
    border: 1px solid var(--cha-border);
    border-radius: 16px;
    position: relative;
}

.cha-promo-testimonial::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--cha-primary-light);
    opacity: 0.3;
    line-height: 1;
}

.cha-promo-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.cha-promo-testimonial-stars svg {
    fill: #fbbf24;
}

.cha-promo-testimonial-text {
    font-size: 14px;
    color: var(--cha-text-primary);
    line-height: 1.7;
    margin: 0 0 18px;
    font-style: italic;
}

.cha-promo-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cha-promo-testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cha-primary), var(--cha-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}


.cha-promo-testimonial-avatar img{
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}


.cha-promo-testimonial-info {
    display: flex;
    flex-direction: column;
}

.cha-promo-testimonial-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--cha-text-primary);
}

.cha-promo-testimonial-role {
    font-size: 12px;
    color: var(--cha-text-secondary);
}

/* ===============================================
   Why Upgrade Section
   =============================================== */
.cha-promo-why {
    padding: 48px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.cha-promo-why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-top: 32px;
}

.cha-promo-why-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cha-promo-why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cha-promo-why-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.cha-promo-why-icon svg {
    width: 14px;
    height: 14px;
    color: #16a34a;
}

.cha-promo-why-text {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.cha-promo-why-highlight {
    background: linear-gradient(145deg, #fff, #f9fafb);
    border: 2px solid var(--cha-primary-light);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cha-promo-why-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(16, 185, 129, 0.03));
}

.cha-promo-why-highlight > * {
    position: relative;
    z-index: 1;
}

.cha-promo-why-stat {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cha-primary), var(--cha-success));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.cha-promo-why-stat-label {
    font-size: 15px;
    color: var(--cha-text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ===============================================
   CTA Footer - Enhanced with Mesh Gradient
   =============================================== */
.cha-promo-cta {
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 50% 100%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #0f0a1e 0%, #1a1444 25%, #231c5e 50%, #1a1444 75%, #0f0a1e 100%);
    padding: 64px 48px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative floating orbs */
.cha-promo-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    filter: blur(20px);
}

.cha-promo-cta::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
    border-radius: 50%;
    animation: floatReverse 12s ease-in-out infinite;
    filter: blur(25px);
}

.cha-promo-cta > * {
    position: relative;
    z-index: 1;
}

/* Grid pattern overlay */
.cha-promo-cta-inner {
    position: relative;
}

.cha-promo-cta-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.cha-promo-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.cha-promo-cta-badge svg {
    width: 16px;
    height: 16px;
}

.cha-promo-cta-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.cha-promo-cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cha-promo-cta-price {
    margin-bottom: 24px;
}

.cha-promo-cta-price-old {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    text-decoration: line-through;
    margin-right: 10px;
}

.cha-promo-cta-price-new {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
}

.cha-promo-cta-price-period {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.cha-promo-cta-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cha-promo-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

.cha-promo-cta-feature svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

.cha-promo-cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.cha-promo-cta-guarantee svg {
    width: 18px;
    height: 18px;
    color: #10b981;
}

/* ===============================================
   Preview Image Container
   =============================================== */
.cha-promo-preview {
    padding: 40px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.cha-promo-preview-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.cha-promo-preview-caption {
    font-size: 13px;
    color: #6b7280;
    margin-top: 12px;
    font-style: italic;
}

/* ===============================================
   Responsive
   =============================================== */
@media (max-width: 900px) {
    .cha-promo-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cha-promo-modules-grid,
    .cha-promo-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cha-promo-why-content {
        grid-template-columns: 1fr;
    }

    .cha-promo-trust-bar {
        flex-wrap: wrap;
        gap: 20px;
    }

    .cha-promo-comparison-table {
        overflow-x: auto;
    }
}

@media (max-width: 600px) {
    .cha-promo-hero {
        padding: 40px 24px;
        border-radius: 16px 16px 0 0;
    }
    
    .cha-promo-hero-title {
        font-size: 28px;
    }

    .cha-promo-hero-desc {
        font-size: 15px;
    }
    
    .cha-promo-stats {
        grid-template-columns: 1fr;
    }
    
    .cha-promo-overview,
    .cha-promo-modules,
    .cha-promo-comparison,
    .cha-promo-testimonials,
    .cha-promo-why,
    .cha-promo-cta {
        padding: 32px 20px;
    }
    
    .cha-promo-cta-features {
        flex-direction: column;
        gap: 12px;
    }

    .cha-promo-trust-bar {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .cha-promo-comparison-header,
    .cha-promo-comparison-row {
        grid-template-columns: 1fr 80px 80px;
    }

    .cha-promo-comparison-cell {
        padding: 12px 10px;
        font-size: 12px;
    }

    .cha-promo-section-title {
        font-size: 22px;
    }

    .cha-promo-cta-title {
        font-size: 24px;
    }
}
