/* === Animated Gradient CSS Custom Properties === */
@property --color1POSx {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 0%;
}

@property --color1POSy {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 0%;
}

@property --color2POSx {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 100%;
}

@property --color2POSy {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 0%;
}

@property --color3POSx {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 100%;
}

@property --color3POSy {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 100%;
}

@property --color4POSx {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 0%;
}

@property --color4POSy {
    inherits: false;
    syntax: "<percentage>";
    initial-value: 100%;
}

/* Keyframes for Animated Gradient */
@keyframes --up-n-down-1 {
    0%, 100% { --color1POSy: 0% }
    50%      { --color1POSy: 100% }
}

@keyframes --side-to-side-1 {
    0%, 100% { --color1POSx: 0% }
    50%      { --color1POSx: 100% }
}

@keyframes --side-to-side-2 {
    0%, 100% { --color2POSx: 100% }
    50%      { --color2POSx: 0% }
}

@keyframes --up-n-down-2 {
    0%, 100% { --color2POSy: 0% }
    50%      { --color2POSy: 100% }
}

@keyframes --side-to-side-3 {
    0%, 100% { --color3POSx: 100% }
    50%      { --color3POSx: 0% }
}

@keyframes --up-n-down-3 {
    0%, 100% { --color3POSy: 100% }
    50%      { --color3POSy: 0% }
}

@keyframes --side-to-side-4 {
    0%, 100% { --color4POSx: 0% }
    50%      { --color4POSx: 100% }
}

@keyframes --up-n-down-4 {
    0%, 100% { --color4POSy: 100% }
    50%      { --color4POSy: 0% }
}

/* Updated Consultation Card with Animated Gradient */
.consultation-card {
    background: white !important;
    border-radius: 30px !important;
    color: #333 !important;
    position: relative;
    aspect-ratio: auto;
    padding: 2rem 2rem;
    text-align: center;
    margin: 2.5rem 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.consultation-card::before {
    --color1LCH: 70% .5 150;
    --color2LCH: 70% .5 330;
    --color3LCH: 70% .5 270;
    --color4LCH: 70% .5 100;
    
    --gradient-size: 75vw;
    --space: ;
    
    content:"";
    display: block;
    position: absolute;
    z-index: -1;
    inset: -150px;
    
    background-image: 
      radial-gradient(
        var(--gradient-size) circle at var(--color1POSx) var(--color1POSy) var(--space), 
        oklch(var(--color1LCH)), oklch(var(--color1LCH) / 0%)
      ),
      radial-gradient(
        var(--gradient-size) circle at var(--color2POSx) var(--color2POSy) var(--space), 
        oklch(var(--color2LCH)), oklch(var(--color2LCH) / 0%)
      ),
      radial-gradient(
        var(--gradient-size) circle at var(--color3POSx) var(--color3POSy) var(--space), 
        oklch(var(--color3LCH)), oklch(var(--color3LCH) / 0%)
      ),
      radial-gradient(
        var(--gradient-size) circle at var(--color4POSx) var(--color4POSy) var(--space), 
        oklch(var(--color4LCH)), oklch(var(--color4LCH) / 0%)
      )
    ;
    mask-image: radial-gradient(closest-side circle at center, #000, #0000);
    
    @supports (background: linear-gradient(in oklab, white, black)) {
      --space: in oklab;
    }
}

.consultation-card.animate-gradient::before {
    animation: 
      --up-n-down-1 4s linear infinite, 
      --side-to-side-1 4s linear -1s infinite,
      --up-n-down-2 4s linear -1s infinite, 
      --side-to-side-2 4s linear infinite,
      --up-n-down-3 4s linear infinite, 
      --side-to-side-3 4s linear -1s infinite,
      --up-n-down-4 4s linear -1s infinite, 
      --side-to-side-4 4s linear infinite
    ;
}

.consultation-card.animate-gradient {
    opacity: 1;
    transform: translateY(0);
}

.consultation-card:hover {
    box-shadow: 0 25px 70px rgba(0,0,0,0.2) !important;
    transform: translateY(-8px) !important;
}

.consultation-card.animate-gradient:hover::before {
    --gradient-size: 85vw;
    animation-duration: 3s;
}

/* Update other consultation elements for white background */
.consultation-header h2 {
    color: #333 !important;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.consultation-header p {
    color: #555 !important;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.5;
}

.consultation-icon {
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.consultation-icon i {
    color: #667eea !important;
    font-size: 2rem;
}

.consultation-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    display: inline-flex;
}

.feature {
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 100px;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1) !important;
    transform: translateY(-5px);
}

.feature i {
    color: #667eea !important;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature span {
    color: #333 !important;
    font-size: 0.9rem;
    font-weight: 600;
}

.consultation-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat .number {
    color: #667eea !important;
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.stat .label {
    color: #555 !important;
    font-size: 0.9rem;
    opacity: 0.8;
}

.consultation-btn {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #667eea !important;
    border: 2px solid rgba(102, 126, 234, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.consultation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s;
}

.consultation-btn:hover::before {
    left: 100%;
}

.consultation-btn:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    border-color: rgba(102, 126, 234, 0.3) !important;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2) !important;
    transform: translateY(-3px);
    text-decoration: none;
}

.consultation-btn i:first-child {
    animation: rotate 2s ease-in-out infinite;
}

.consultation-btn i:last-child {
    transition: transform 0.3s ease;
}

.consultation-btn:hover i:last-child {
    transform: translateX(-3px);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

@keyframes rotate {
    0%, 100% { 
        transform: rotate(0deg); 
    }
    50% { 
        transform: rotate(10deg); 
    }
}

/* انیمیشن‌های اضافی برای اسکرول */
.consultation-header, 
.consultation-features, 
.consultation-stats, 
.consultation-btn {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .consultation-card {
        padding: 2rem 1rem !important;
        margin: 2rem 0 !important;
    }
    
    .consultation-header h2 {
        font-size: 1.5rem !important;
    }
    
    .consultation-features {
        gap: 1rem !important;
        flex-direction: row !important;
        justify-content: space-around !important;
    }
    
    .feature {
        min-width: auto !important;
        padding: 0.8rem !important;
    }
    
    .consultation-stats {
        gap: 2rem !important;
        flex-direction: row !important;
    }
    
    .stat .number {
        font-size: 1.5rem !important;
    }
    
    .consultation-btn {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .consultation-card {
        padding: 1.5rem 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .consultation-header h2 {
        font-size: 1.3rem !important;
    }
    
    .consultation-header p {
        font-size: 1rem !important;
    }
    
    .consultation-features {
        gap: 0.8rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .feature {
        padding: 0.6rem !important;
        min-width: 80px !important;
    }
    
    .consultation-stats {
        gap: 1.5rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .consultation-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto 1rem !important;
    }
    
    .consultation-icon i {
        font-size: 1.5rem !important;
    }
}

/* ===== CTA NEWSLETTER SECTION ===== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6B73FF 100%);
    overflow: hidden;
    margin: 60px 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.9) 0%, 
        rgba(118, 75, 162, 0.85) 50%, 
        rgba(107, 115, 255, 0.9) 100%);
    z-index: 2;
}

.cta-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: float 20s infinite linear;
    z-index: 3;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: floatShapes 15s infinite ease-in-out;
}

.cta-shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes floatShapes {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

.container {
    position: relative;
    z-index: 10;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-header {
    margin-bottom: 50px;
}

.cta-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.cta-icon:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
}

.cta-icon i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
}

.cta-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

.newsletter-form {
    margin: 50px 0;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.form-group:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    color: white;
    outline: none;
    border-radius: 50px;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-subscribe {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-subscribe:hover {
    background: linear-gradient(135deg, #ee5a52, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.btn-subscribe i {
    font-size: 18px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-feature i {
    font-size: 20px;
    color: #ffd700;
}

.cta-feature span {
    font-weight: 600;
    font-size: 14px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    font-size: 14px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 16px;
    color: #4ade80;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    position: relative;
    padding: 100px 0;
    background: #f8f9fb;
    overflow: hidden;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.features-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(59, 130, 246, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(59, 130, 246, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(59, 130, 246, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(59, 130, 246, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.container {
    position: relative;
    z-index: 10;
}

.section-title-container {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.1);
}

.feature-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transform: rotateY(180deg);
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.feature-card:hover .icon-bg {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.2);
}

.feature-icon i {
    font-size: 32px;
    color: #3b82f6;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #3b82f6;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover .feature-badge::before {
    left: 100%;
}

.features-stats {
    margin-top: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    min-width: 150px;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .cta-header h2 {
        font-size: 2.4rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .features-section {
        padding: 80px 0;
    }
    
    .cta-header h2 {
        font-size: 2rem;
    }
    
    .cta-header p {
        font-size: 1.1rem;
    }
    
    .cta-features {
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .features-stats {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .cta-header {
        margin-bottom: 40px;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .cta-icon i {
        font-size: 24px;
    }
    
    .cta-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .cta-header p {
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .form-group input {
        padding: 15px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.9);
        color: #333;
    }
    
    .form-group input::placeholder {
        color: #666;
    }
    
    .btn-subscribe {
        border-radius: 15px;
        justify-content: center;
        padding: 15px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin: 40px 0;
    }
    
    .cta-feature {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .section-title-container {
        margin-bottom: 50px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .features-stats {
        margin-top: 50px;
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .stat-item {
        padding: 10px;
        min-width: auto;
        flex: 1;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .features-section {
        padding: 50px 0;
    }
    
    .cta-header h2 {
        font-size: 1.5rem;
    }
    
    .cta-header p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cta-features {
        margin: 30px 0;
    }
    
    .cta-feature {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .trust-badges {
        margin-top: 30px;
    }
    
    .trust-item {
        font-size: 12px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .features-stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px 15px;
    }
    
    .stat-item {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 15px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 10px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn-subscribe:focus,
.form-group input:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

.feature-card:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
}