/* Premium Dashboard & CTA Sections */

/* Dashboard Preview Section */
.dashboard-preview-section {
    position: relative;
    overflow: hidden;
}

/* Dashboard Container */
.dashboard-container-premium {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--medium-gray);
    max-width: 900px;
    margin: 0 auto;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--medium-gray);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: var(--fw-bold);
    color: var(--black);
}

.dashboard-badge {
    padding: 0.375rem 0.75rem;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.dashboard-stat {
    padding: var(--space-lg);
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dashboard-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.dashboard-stat-value {
    font-size: 2.5rem;
    font-weight: var(--fw-black);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.dashboard-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Premium CTA Section */
.cta-premium {
    position: relative;
    background: var(--primary-gradient);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl) var(--space-lg);
    color: var(--white);
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: var(--fw-black);
    margin-bottom: var(--space-md);
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

.cta-form {
    display: flex;
    gap: var(--space-md);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    transition: all var(--transition-base);
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.cta-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button {
    padding: 1.1rem 2.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: var(--radius-full);
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.cta-feature i {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* Footer Premium */
.footer-premium {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    height: 45px;
    margin-bottom: var(--space-md);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-2px);
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-md);
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    display: block;
    padding: var(--space-xs) 0;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-base);
}

.footer-link:hover {
    color: var(--white);
    padding-left: var(--space-xs);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-badges {
    display: flex;
    gap: var(--space-md);
}

.footer-badge {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-badge i {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-form {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}
