/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-ads {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: white;
    transform-style: preserve-3d;
}

.float-card .metric {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-card .label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 5px;
}

.card-1 {
    top: 20%;
    right: 10%;
    animation: float1 6s ease-in-out infinite;
    transform: rotateX(10deg) rotateY(-10deg);
}

.card-2 {
    top: 60%;
    right: 5%;
    animation: float2 8s ease-in-out infinite;
    transform: rotateX(-10deg) rotateY(10deg);
}

.card-3 {
    bottom: 20%;
    left: 8%;
    animation: float3 7s ease-in-out infinite;
    transform: rotateX(5deg) rotateY(-5deg);
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotateX(10deg) rotateY(-10deg); }
    50% { transform: translateY(-30px) rotateX(15deg) rotateY(-15deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) rotateX(-10deg) rotateY(10deg); }
    50% { transform: translateY(-25px) rotateX(-5deg) rotateY(15deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-35px) rotateX(10deg) rotateY(-10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-3d {
    display: inline-block;
    transform-style: preserve-3d;
    animation: title3d 3s ease-in-out infinite;
}

.title-highlight {
    background: linear-gradient(45deg, #fff, #e0e7ff, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 4s ease-in-out infinite;
}

.title-gradient {
    background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: goldShift 3s ease-in-out infinite;
}

@keyframes title3d {
    0%, 100% { transform: rotateX(0deg) rotateY(0deg); }
    50% { transform: rotateX(5deg) rotateY(2deg); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes goldShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateZ(10px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.btn-primary-3d, .btn-secondary-3d {
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.btn-primary-3d {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary-3d:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary-3d {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-3d:hover {
    transform: translateY(-5px) rotateX(10deg);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Strategy Section */
.strategy-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
}

.section-header-3d {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-3d h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header-3d h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.strategy-card {
    position: relative;
    perspective: 1000px;
    height: 100%;
}

.card-3d-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: all 0.4s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.strategy-card:hover .card-3d-wrapper {
    transform: rotateX(5deg) rotateY(5deg) translateZ(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateZ(10px);
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.strategy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.card-content ul {
    list-style: none;
    flex-grow: 1;
}

.card-content li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
    border-bottom: 1px solid #eef2f7;
}

.card-content li:last-child {
    border-bottom: none;
}

.card-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Creative Section */
.creative-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.creative-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.creative-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.creative-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.creative-features {
    margin-top: 40px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-row .feature-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.feature-row h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #e0e7ff;
}

.feature-row p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.creative-3d-showcase {
    position: relative;
    height: 400px;
    perspective: 1000px;
}

.showcase-item {
    position: absolute;
    width: 160px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

.item-1 {
    top: 20px;
    left: 50px;
    transform: rotateX(15deg) rotateY(-10deg);
    animation: showcase1 8s ease-in-out infinite;
}

.item-2 {
    top: 120px;
    right: 30px;
    transform: rotateX(-10deg) rotateY(15deg);
    animation: showcase2 10s ease-in-out infinite;
}

.item-3 {
    bottom: 50px;
    left: 20px;
    transform: rotateX(10deg) rotateY(5deg);
    animation: showcase3 9s ease-in-out infinite;
}

@keyframes showcase1 {
    0%, 100% { transform: rotateX(15deg) rotateY(-10deg) translateZ(0px); }
    50% { transform: rotateX(20deg) rotateY(-15deg) translateZ(30px); }
}

@keyframes showcase2 {
    0%, 100% { transform: rotateX(-10deg) rotateY(15deg) translateZ(0px); }
    50% { transform: rotateX(-5deg) rotateY(20deg) translateZ(25px); }
}

@keyframes showcase3 {
    0%, 100% { transform: rotateX(10deg) rotateY(5deg) translateZ(0px); }
    50% { transform: rotateX(15deg) rotateY(10deg) translateZ(35px); }
}

.item-preview {
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.item-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.item-stats {
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
    text-align: center;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: #f8fafc;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: #667eea;
    transform: scale(1.05) translateZ(20px);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-15px) rotateX(5deg);
}

.package-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    position: relative;
}

.package-card.featured .package-header {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #1a1a1a;
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.package-badge.recommended {
    background: rgba(26, 26, 26, 0.2);
    color: #1a1a1a;
}

.package-content {
    padding: 40px 30px;
}

.package-content ul {
    list-style: none;
}

.package-content li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid #eef2f7;
    color: #4a5568;
    line-height: 1.6;
}

.package-content li:last-child {
    border-bottom: none;
}

.package-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-footer {
    padding: 0 30px 40px;
}

.btn-package {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #667eea;
    background: transparent;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.btn-package:hover {
    background: #667eea;
    color: white;
    transform: translateZ(10px);
}

.btn-package.primary {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.btn-package.primary:hover {
    background: #5a67d8;
    border-color: #5a67d8;
    transform: translateZ(10px) scale(1.05);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content-3d {
    text-align: center;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.cta-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
    animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary, .btn-cta-secondary {
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-8px) rotateX(15deg);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-8px) rotateX(15deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 60px 0;
    }
    
    .hero-floating-elements .float-card {
        display: none;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-3d, .btn-secondary-3d {
        width: 100%;
        max-width: 280px;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .creative-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .creative-3d-showcase {
        height: 300px;
        margin: 0 auto;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header-3d h2 {
        font-size: 1.8rem;
    }
    
    .creative-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-text h2 {
        font-size: 1.8rem;
    }
    
    .showcase-item {
        width: 120px;
        height: 80px;
        padding: 10px;
    }
    
    .item-preview {
        height: 45px;
    }
}

/* Performance Optimizations */
.hero-3d-container,
.card-3d-wrapper,
.creative-3d-showcase,
.cta-content-3d {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
}
.hero-badge{display:none;}
/* فقط رنگ نوشته های بخش Strategy */
.strategy-section .section-header-3d h2,
.strategy-section .section-header-3d p {
  color: #ffffff !important;   /* سفید */
  opacity: 1 !important;
  text-shadow: none !important; /* برای وضوح بیشتر */
}



.creative-3d-showcase .item-stats{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 4px;          /* مقدار را کمتر/بیشتر کن؛ مثلا 12px یا 4px */
  z-index: 3;
  pointer-events: none;  /* تا روی هاور کارت اثر نگذارد */
}
/* Packages Section Header fix */
.packages-section .section-header-3d h2,
.packages-section .section-header-3d p {
  color: #ffffff !important;   /* سفید */
  opacity: 1 !important;
  text-shadow: none !important;
}
/* Center buttons in package cards */
.package-footer {
  text-align: center; /* همه محتوا رو وسط میاره */
}

.package-footer .btn-package {
  display: inline-block;   /* دکمه هم‌تراز می‌مونه */
  margin: 0 auto;          /* فاصله دو طرف برابر */
}
/* === CTA Pills: equal size + perfect centering === */
.cta-actions{
  display: flex;
  gap: 16px;
  justify-content: center;   /* وسط‌چین کل گروه */
  align-items: center;
  flex-wrap: wrap;
}

.cta-actions .btn-cta-primary,
.cta-actions .btn-cta-secondary{
  display: inline-flex;       /* برای سنتر عمودی/افقی متن */
  align-items: center;
  justify-content: center;
  height: 56px;               /* ارتفاع ثابت */
  width: 260px;               /* عرض یکسان (می‌تونی 240/280 هم بذاری) */
  border-radius: 9999px;      /* قرصی کامل */
  padding: 0 22px;            /* چون height ثابته، padding عمودی لازم نیست */
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;             /* جلوگیری از جهش عمودی متن */
  white-space: nowrap;        /* نشکنه */
  text-align: center;
}

/* Primary: قرصی زرد با سایه */
.cta-actions .btn-cta-primary{
  box-shadow: 0 14px 28px rgba(255,215,0,0.28);
}
.cta-actions .btn-cta-primary:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(255,215,0,0.36);
}

/* Secondary: قرصی تیره با خط‌حاشیه روشن */
.cta-actions .btn-cta-secondary{
  border: 2px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.cta-actions .btn-cta-secondary:hover{
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}

/* دسترسی‌پذیری: فوکوس حلقه لطیف */
.cta-actions .btn-cta-primary:focus-visible,
.cta-actions .btn-cta-secondary:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15), 0 0 0 6px rgba(102,126,234,.45);
}

/* موبایل: کمی کوچک‌تر تا جا بشه */
@media (max-width: 480px){
  .cta-actions .btn-cta-primary,
  .cta-actions .btn-cta-secondary{
    width: 100%;
    max-width: 320px;    /* وسط گروه می‌مونه */
    height: 52px;
    font-size: 1rem;
  }
}
/* ========== Card Badge - Centered in Box ========== */
.card-badge-center {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(237, 100, 166, 0.15));
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 20px;
    color: #0dcaf0;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.card-badge-center:hover {
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.7);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* اگر داخل Card/Section هست */
.df-card .card-badge-center,
.section-wrapper .card-badge-center {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
