    :root {
        --cta-accent: #c9a84c;
        --cta-accent-hover: #d4b85c;
        --cta-primary: #1a2b4c;
        --cta-bg-from: #0f1f35;
        --cta-bg-via: #142540;
        --cta-bg-to: #0d1b2a;
        --cta-radius: 20px;
        --cta-radius-sm: 12px;
        --cta-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .cta-strip-section {
        position: relative;
        padding: 5rem 2rem;
                    border-radius: 10px; /* این خط رو اضافه کنید */

        background: linear-gradient(
            160deg,
            var(--cta-bg-from) 0%,
            var(--cta-bg-via) 40%,
            var(--cta-bg-to) 100%
            
        );
        overflow: hidden;
        font-family: 'Yekan Bakh', 'IRANYekan', Tahoma, sans-serif;
    }
    
    /* === PATTERN OVERLAY === */
    .cta-pattern {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 1;
        opacity: 0.04;
        background-image: 
            radial-gradient(circle at 20% 30%, #ffffff 1px, transparent 1px),
            radial-gradient(circle at 80% 70%, #ffffff 1px, transparent 1px),
            radial-gradient(circle at 50% 50%, #c9a84c 2px, transparent 2px);
        background-size: 
            80px 80px,
            100px 100px,
            120px 120px;
        background-position: 
            0 0,
            20px 20px,
            40px 40px;
        animation: patternShift 20s linear infinite;
    }
    
    @keyframes patternShift {
        0% { background-position: 0 0, 20px 20px, 40px 40px; }
        100% { background-position: 80px 80px, 120px 120px, 160px 160px; }
    }
    
    /* === GLOW ORBS === */
    .cta-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        z-index: 1;
        animation: orbFloat 6s ease-in-out infinite;
    }
    
    .cta-orb-1 {
        width: 350px; height: 350px;
        background: rgba(201, 168, 76, 0.08);
        top: -100px; right: -100px;
        animation-delay: 0s;
    }
    
    .cta-orb-2 {
        width: 250px; height: 250px;
        background: rgba(26, 43, 76, 0.4);
        bottom: -80px; left: -80px;
        animation-delay: 2s;
    }
    
    .cta-orb-3 {
        width: 200px; height: 200px;
        background: rgba(201, 168, 76, 0.05);
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: 4s;
    }
    
    @keyframes orbFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(20px, -20px) scale(1.1); }
        66% { transform: translate(-15px, 15px) scale(0.9); }
    }
    
    .cta-orb-3 {
        animation: orbPulse 4s ease-in-out infinite;
    }
    
    @keyframes orbPulse {
        0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
        50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
    }
    
    /* === PARTICLES === */
    .cta-particles {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
        z-index: 1;
    }
    
    .cta-particle {
        position: absolute;
        background: var(--cta-accent);
        border-radius: 50%;
        animation: ctaParticleFloat linear infinite;
        opacity: 0;
    }
    
    @keyframes ctaParticleFloat {
        0% { transform: translateY(0) translateX(0) scale(0); opacity: 0; }
        10% { opacity: 0.6; }
        90% { opacity: 0.6; }
        100% { transform: translateY(-400px) translateX(50px) scale(1.5); opacity: 0; }
    }
    
    /* === CONTAINER === */
    .cta-container {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
        flex-wrap: wrap;
    }
    
    /* === CONTENT === */
    .cta-content {
        flex: 1;
        min-width: 280px;
        direction: rtl;
    }
    
    .cta-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(201, 168, 76, 0.1);
        border: 1px solid rgba(201, 168, 76, 0.25);
        color: var(--cta-accent);
        padding: 0.4rem 1.2rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 1px;
        margin-bottom: 1.2rem;
    }
    
    .cta-badge-dot {
        width: 7px; height: 7px;
        background: var(--cta-accent);
        border-radius: 50%;
        animation: badgePulse 1.5s ease-in-out infinite;
    }
    
    @keyframes badgePulse {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.8); opacity: 0.3; }
    }
    
    .cta-title {
        font-size: 2.2rem;
        font-weight: 900;
        color: #ffffff;
        margin: 0 0 1rem;
        line-height: 1.5;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }
    
    .cta-title .highlight {
        color: var(--cta-accent);
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin: 0;
    }
    
    /* === BUTTONS === */
    .cta-buttons {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-shrink: 0;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.95rem 2.2rem;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: 50px;
        transition: var(--cta-transition);
        white-space: nowrap;
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
        font-family: inherit;
    }
    
    /* Primary */
    .cta-btn-primary {
        background: linear-gradient(135deg, var(--cta-accent) 0%, #b8942f 100%);
        color: #1a1a1a;
        box-shadow: 0 10px 35px rgba(201, 168, 76, 0.4);
    }
    
    .cta-btn-primary::after {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
        opacity: 0;
        transition: var(--cta-transition);
    }
    
    .cta-btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 45px rgba(201, 168, 76, 0.6);
    }
    
    .cta-btn-primary:hover::after {
        opacity: 1;
    }
    
    .cta-btn-primary:active {
        transform: translateY(-2px);
    }
    
    .cta-btn-icon {
        display: inline-flex;
        transition: transform 0.3s ease;
    }
    
    .cta-btn-primary:hover .cta-btn-icon {
        transform: translateX(-6px);
    }
    
    /* Secondary */
    .cta-btn-secondary {
        background: transparent;
        color: #ffffff;
        border: 2px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
    }
    
    .cta-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        color: #ffffff;
    }
    
    /* === DIVIDER LINE === */
    .cta-divider {
        display: none;
        width: 60px;
        height: 3px;
        background: var(--cta-accent);
        border-radius: 2px;
        margin: 1.5rem 0;
    }
    
    /* === RESPONSIVE === */
    @media (max-width: 900px) {
        .cta-container {
            flex-direction: column;
            text-align: center;
            gap: 2rem;
        }
        
        .cta-content {
            text-align: center;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }
        
        .cta-buttons {
            justify-content: center;
        }
        
        .cta-divider {
            display: block;
            margin: 1.5rem auto;
        }
    }
    
    @media (max-width: 600px) {
        .cta-strip-section {
            padding: 3.5rem 1.25rem;
                        border-radius: 10px; /* این خط رو اضافه کنید */

        }
        
        .cta-title {
            font-size: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: 1rem;
        }
        
        /* دکمه‌ها - تنظیمات جدید */
        .cta-buttons {
            width: 100%;
            flex-direction: row; /* به جای column */
            justify-content: center; /* وسط‌چین */
            gap: 0;
        }
        
        /* مخفی کردن دکمه secondary */
        .cta-btn-secondary {
            display: none !important;
        }
        
        /* کوچک‌سازی و تنظیم دکمه طلایی */
        .cta-btn-primary {
            width: auto; /* حذف عرض کامل */
            padding: 0.5rem 1.3rem; /* کاهش padding */
            font-size: 0.8rem; /* کاهش سایز فونت */
            justify-content: center;
        }
        
        .cta-btn {
            width: auto; /* بازنویسی عرض کامل */
        }
    }