/* ===== CTA SECTION ===== */
.conscious-cta-section {
    background: linear-gradient(135deg, #2E8B57 0%, #3CB371 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.conscious-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.03)" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.conscious-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CTA Card */
.conscious-cta-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

/* Header */
.conscious-cta-header {
    text-align: center;
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05), rgba(60, 179, 113, 0.1));
    border-bottom: 1px solid rgba(46, 139, 87, 0.1);
}

.conscious-cta-label {
    display: inline-block;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.conscious-cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.conscious-cta-highlight {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.conscious-cta-subtitle {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Timer Wrapper */
.conscious-cta-timer-wrapper {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Timer */
.conscious-cta-timer {
    background: linear-gradient(135deg, #1a1a2e, #2d3748);
    border-radius: 16px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.conscious-timer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.conscious-timer-icon {
    width: 28px;
    height: 28px;
    fill: #3CB371;
}

.conscious-timer-title {
    display: flex;
    flex-direction: column;
}

.conscious-timer-title strong {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.conscious-timer-title span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

.conscious-timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.conscious-timer-unit {
    text-align: center;
    flex: 1;
}

.conscious-timer-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums;
}

.conscious-timer-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.conscious-timer-separator {
    font-size: 48px;
    font-weight: 700;
    color: #3CB371;
    margin-bottom: 15px;
}

.conscious-timer-progress {
    margin-top: 10px;
}

.conscious-progress-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.conscious-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.conscious-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3CB371, #2E8B57);
    border-radius: 4px;
    transition: width 1s linear, background 0.3s ease;
}

.conscious-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Keypoints */
.conscious-cta-keypoints {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conscious-keypoint {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(46, 139, 87, 0.1);
    transition: all 0.3s ease;
}

.conscious-keypoint:hover {
    transform: translateX(5px);
    border-color: rgba(46, 139, 87, 0.3);
    background: rgba(46, 139, 87, 0.08);
}

.conscious-keypoint-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conscious-keypoint-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.conscious-keypoint-content {
    flex: 1;
}

.conscious-keypoint-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.conscious-keypoint-content p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

/* CTA Buttons */
.conscious-cta-buttons {
    padding: 0 40px 40px;
    text-align: center;
}

.conscious-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
}

.conscious-cta-btn-primary {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    box-shadow: 0 10px 30px rgba(46, 139, 87, 0.4);
    margin-bottom: 20px;
}

.conscious-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 139, 87, 0.5);
}

.conscious-btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.conscious-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
    margin-top: 15px;
}

.conscious-cta-note svg {
    width: 16px;
    height: 16px;
    fill: #2E8B57;
}

/* Security Badges */
.conscious-cta-security {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 25px 40px;
    background: rgba(46, 139, 87, 0.05);
    border-top: 1px solid rgba(46, 139, 87, 0.1);
}

.conscious-security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
}

.conscious-security-badge svg {
    width: 16px;
    height: 16px;
    fill: #2E8B57;
}

/* Responsive Design */
@media (max-width: 992px) {
    .conscious-cta-timer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .conscious-cta-title {
        font-size: 36px;
    }
    
    .conscious-timer-value {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .conscious-cta-section {
        padding: 60px 0;
    }
    
    .conscious-cta-header {
        padding: 30px 20px;
    }
    
    .conscious-cta-timer-wrapper {
        padding: 30px 20px;
    }
    
    .conscious-cta-timer {
        padding: 25px;
    }
    
    .conscious-timer-value {
        font-size: 48px;
    }
    
    .conscious-cta-buttons {
        padding: 0 20px 30px;
    }
    
    .conscious-cta-security {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .conscious-cta-title {
        font-size: 28px;
    }
    
    .conscious-cta-subtitle {
        font-size: 16px;
    }
    
    .conscious-timer-display {
        gap: 10px;
    }
    
    .conscious-timer-value {
        font-size: 36px;
    }
    
    .conscious-timer-separator {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .conscious-timer-label {
        font-size: 12px;
    }
    
    .conscious-cta-btn {
        padding: 18px 20px;
        font-size: 16px;
    }
}