/* Enhanced Dashboard Styles - Updated 2025 Version */

/* Global Dashboard Styles */
body {
    background: var(--bg-darker);
    color: var(--text-primary);
    font-family: var(--font-family);
    position: relative;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 35%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(255, 108, 143, 0.15) 0%, transparent 50%);
}

/* Global Section Enhancement */
section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 4rem 0;
    transition: all 0.5s ease;
}

/* Enhanced Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/grid-pattern.svg') repeat;
    opacity: 0.03;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: orbPulse 8s infinite ease-in-out;
}

@keyframes orbPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.orb-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.6) 0%, rgba(108, 99, 255, 0) 70%);
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 108, 143, 0.6) 0%, rgba(255, 108, 143, 0) 70%);
    animation-delay: 2s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(0, 217, 197, 0.6) 0%, rgba(0, 217, 197, 0) 70%);
    animation-delay: 4s;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhanced Hero Content */
.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-title .gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    display: inline-block;
    animation: gradientFlow 8s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
    position: relative;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Enhanced Hero Devices */
.hero-image {
    flex: 1;
    position: relative;
    animation: floatingDevice 6s ease-in-out infinite;
    opacity: 0;
    animation: fadeIn 1s 0.8s forwards, floatingDevice 6s ease-in-out 1s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatingDevice {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-device {
    position: relative;
}

.device-mockup {
    position: relative;
    width: 100%;
    max-width: 580px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(108, 99, 255, 0.3);
    background: var(--bg-darker);
    padding: 8px;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s ease;
}

.device-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.device-screen {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.device-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(255,255,255,0.05) 0%, 
        rgba(255,255,255,0) 40%
    );
    pointer-events: none;
}

.floating-element {
    position: absolute;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    z-index: 10;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.fe-1 {
    bottom: -30px;
    right: -40px;
    animation-name: float1;
}

.fe-2 {
    top: 40px;
    left: -60px;
    animation-name: float2;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(15px) rotate(-2deg); }
}

.analytics-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(108, 99, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-bottom: 3px;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.notification-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(255, 108, 143, 0.3);
}

.notification-pill i {
    font-size: 12px;
}

/* Enhanced Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.7);
}

/* Enhanced Demo Generator Section */
.demo-generator {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 6rem 0;
    position: relative;
}

.demo-generator::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(108, 99, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 10%, rgba(255, 108, 143, 0.1) 0%, transparent 60%);
    opacity: 0.6;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
}

.generator-card {
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding: 2rem;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.25),
        0 0 20px rgba(108, 99, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}

.btn-icon {
    margin-right: 0.5rem;
}

.glow {
    animation: btnGlow 2s infinite alternate;
}

@keyframes btnGlow {
    0% {
        box-shadow: 0 4px 20px rgba(108, 99, 255, 0.5);
    }
    100% {
        box-shadow: 0 4px 30px rgba(108, 99, 255, 0.8);
    }
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-device {
    position: relative;
    max-width: 200%;
}

.device-mockup {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.device-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.device-screen {
    width: 100%;
    display: block;
}

.device-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.floating-element {
    position: absolute;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    animation: float 4s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.fe-1 {
    top: 20%;
    left: -15%;
    animation-delay: 0.5s;
}

.fe-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1s;
}

.analytics-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.card-content {
    flex: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.notification-pill {
    background: var(--bg-card);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.notification-pill i {
    color: var(--accent);
}

/* Demo Generator Section */
.demo-generator {
    padding: 6rem 0;
    position: relative;
    background: var(--bg-darker);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.generator-card {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.generator-card::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0) 70%);
    top: -400px;
    right: -400px;
    z-index: 0;
    border-radius: 50%;
}

.generator-card::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 108, 143, 0.1) 0%, rgba(255, 108, 143, 0) 70%);
    bottom: -300px;
    left: -300px;
    z-index: 0;
    border-radius: 50%;
}

.generator-content {
    position: relative;
    z-index: 1;
}

.prompt-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: block;
}

.prompt-textarea {
    width: 100%;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
    min-height: 120px;
    resize: none;
    font-size: 1rem;
    font-family: var(--font-family);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.prompt-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.3);
}

.prompt-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.prompt-pill {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prompt-pill:hover {
    background: rgba(108, 99, 255, 0.1);
    color: var(--text-primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.generate-action {
    margin-top: 2rem;
    text-align: center;
}

.btn-generate {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-generate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 99, 255, 0.7);
}

.demo-result {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 200px;
}

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-tertiary);
    gap: 1rem;
}

.result-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Enhanced Features Section */
.features {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, transparent 100%);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(108, 99, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.feature-card:hover .feature-icon {
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.4);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-tertiary);
    line-height: 1.6;
}

/* Workflow Section */
.workflow-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.workflow-steps {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    flex-direction: row;
}

.workflow-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.workflow-step-icon {
    position: relative;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(31, 41, 55, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.5rem;
    color: var(--primary);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.workflow-step:hover .icon-circle {
    transform: scale(1.1);
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.4);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
    border: 2px solid var(--bg-darker);
}

.workflow-step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.workflow-step-content p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* Enhanced Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 20% 40%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 108, 143, 0.1) 0%, transparent 50%);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.25rem;
    width: fit-content;
    margin: 0 auto 3rem;
    position: relative;
    max-width: 400px;
}

.pricing-toggle-option {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    z-index: 1;
    position: relative;
    color: var(--text-secondary);
}

.pricing-toggle-option.active {
    color: white;
    background: var(--gradient-primary);
    box-shadow: 0 2px 10px rgba(108, 99, 255, 0.4);
}

/* Remove the toggle-switch element - we'll use the active class on options instead */
.toggle-switch {
    display: none;
}

.pricing-save-badge {
    position: absolute;
    right: -15px;
    top: -15px;
    background: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.pricing-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.pricing-card.featured {
    border: none;
    position: relative;
}

.pricing-card.featured:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.3);
}

.pricing-card-header:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    top: -200px;
    left: -100px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent 70%);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 4px;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 400;
    margin-left: 4px;
}

/* Enhanced Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(108, 99, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 90% 90%, rgba(255, 108, 143, 0.1) 0%, transparent 60%);
}

.testimonials-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 2rem 0.5rem;
    margin: 0 -0.5rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 2rem;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    min-width: 350px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 5rem;
    color: rgba(108, 99, 255, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(108, 99, 255, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin: 0;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a101e 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    opacity: 0.8;
    animation: sparkle 3s infinite;
    box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.6),
                0 0 30px 8px rgba(var(--primary-rgb), 0.4);
    z-index: 2;
}

.dynamic-sparkle {
    opacity: 0.6;
    width: 3px;
    height: 3px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.dynamic-sparkle:nth-child(odd) {
    background-color: rgba(var(--primary-rgb), 0.9);
    box-shadow: 0 0 10px 2px rgba(var(--primary-rgb), 0.6);
}

.dynamic-sparkle:nth-child(even) {
    background-color: rgba(var(--accent-rgb), 0.9);
    box-shadow: 0 0 10px 2px rgba(var(--accent-rgb), 0.6);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.cta-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(
        60deg,
        var(--primary),
        var(--secondary),
        var(--accent),
        var(--primary)
    );
    background-size: 300% 300%;
    animation: gradientShift 8s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.cta-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(var(--primary-rgb), 0.2),
        0 0 20px rgba(var(--secondary-rgb), 0.1);
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(90deg, 
        var(--text-primary), 
        var(--primary),
        var(--accent),
        var(--text-primary));
    background-size: 300% 100%;
    animation: gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, 
        var(--primary), 
        var(--secondary),
        var(--accent));
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary), 
        var(--secondary),
        var(--accent));
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
    opacity: 0.6;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 540px;
    line-height: 1.7;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.cta-image {
    flex: 1;
    position: relative;
    align-self: center;
    max-width: 400px;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
    z-index: 2;
}

.cta-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(var(--primary-rgb), 0.3),
        transparent 70%
    );
    filter: blur(40px);
    z-index: -1;
    transform: translateY(30px) scale(0.9);
    opacity: 0.6;
    animation: pulse 6s infinite alternate;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(108, 99, 255, 0.2),
        0 0 40px rgba(var(--primary-rgb), 0.15);
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(-5deg) translateY(0);
    animation: float1 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-image:hover img {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 
        0 40px 70px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(108, 99, 255, 0.3),
        0 0 50px rgba(var(--primary-rgb), 0.2);
}

.floating-notification {
    position: absolute;
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 0 15px rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.floating-notification::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: linear-gradient(
        60deg,
        var(--primary),
        var(--accent),
        var(--secondary)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.floating-notification:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(var(--primary-rgb), 0.2);
}

.not-1 {
    top: 20px;
    right: -30px;
    animation: float1 6s ease-in-out infinite;
    z-index: 3;
}

.not-2 {
    bottom: 20px;
    left: -30px;
    animation: float2 7s ease-in-out infinite;
    animation-delay: 1s;
    z-index: 3;
}

.not-1 i {
    color: var(--primary);
    animation: pulse 2s infinite;
}

.not-2 i {
    color: var(--accent);
    animation: pulse 2s infinite alternate;
}

.floating-notification span {
    white-space: nowrap;
}

/* Animation for scroll effects */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Enhanced responsive styles for CTA section */
@media screen and (max-width: 1024px) {
    .cta-container {
        flex-direction: column;
        padding: 2.5rem;
        gap: 3rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .cta-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-features {
        justify-content: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-image {
        max-width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .cta-section {
        padding: 6rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .not-1 {
        top: 10px;
        right: -15px;
    }
    
    .not-2 {
        bottom: 10px;
        left: -15px;
    }
    
    .floating-notification {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .sparkle {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .floating-notification {
        display: none;
    }
    
    .cta-container {
        padding: 2rem 1.5rem;
    }
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Dashboard Specific Styles */
.dashboard-main {
    padding: 2rem;
    transition: all 0.3s ease;
    background: var(--bg-darker);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.dashboard-actions {
    display: flex;
    gap: 1rem;
}

.dashboard-stats {
    margin-bottom: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-label {
    color: var(--text-tertiary);
    margin-bottom: 0.5rem;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.stat-trend.positive {
    color: var(--success);
}

.stat-trend.negative {
    color: var(--danger);
}

/* Enhanced Content Generator */
.content-generator {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.content-generator::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    z-index: 0;
}

.generator-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.generator-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.template-select {
    min-width: 200px;
}

.form-select {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
}

.prompt-input-container {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.prompt-input {
    width: 100%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    padding: 1rem;
    height: 120px;
    resize: none;
    transition: all 0.3s ease;
}

.prompt-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.2);
    outline: none;
}

.prompt-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.prompt-suggestion {
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    color: var(--primary);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.prompt-suggestion:hover {
    background: rgba(108, 99, 255, 0.2);
    transform: translateY(-2px);
}

.generate-btn-container {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(108, 99, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.ai-content {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.content-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.action-btns {
    display: flex;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Enhanced Recent Activity */
.recent-activity, .upcoming-content {
    background: rgba(31, 41, 55, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-left: 1rem;
}

.section-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: var(--primary);
    border-radius: 4px;
}

.section-action {
    color: var(--primary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-action:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateX(5px);
    background: rgba(15, 23, 42, 0.5);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(31, 41, 55, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.activity-meta {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.activity-stats {
    display: flex;
    gap: 1rem;
    margin-right: 1rem;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.stats-icon {
    color: var(--primary);
}

.activity-action {
    white-space: nowrap;
}

/* Enhanced Timeline */
.content-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-day {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.day-label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.timeline-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(15, 23, 42, 0.3);
    border-radius: 12px;
    margin-left: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(15, 23, 42, 0.5);
    transform: translateX(5px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 1rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-time {
    width: 80px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-tertiary);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: 1rem;
    padding-right: 1rem;
}

.timeline-content {
    flex: 1;
}

.timeline-platform {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: 0.25rem;
}

.timeline-platform i {
    font-size: 1rem;
}

.timeline-title {
    font-weight: 600;
}

.timeline-action {
    white-space: nowrap;
}

/* Quick Actions Section */
.quick-actions {
  margin-bottom: 2rem;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.quick-action-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.quick-action-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(108, 99, 255, 0.7), rgba(108, 99, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.quick-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(108, 99, 255, 0.15);
  border-color: rgba(108, 99, 255, 0.3);
}

.quick-action-card:hover::before {
  opacity: 0.05;
}

.quick-action-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  background: rgba(108, 99, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quick-action-card:hover .quick-action-icon {
  transform: scale(1.1);
  background: rgba(108, 99, 255, 0.15);
}

.quick-action-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.quick-action-description {
  color: var(--text-secondary);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .quick-actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
}
