.elementor-587 .elementor-element.elementor-element-9301711{--display:flex;}.elementor-587 .elementor-element.elementor-element-9301711.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-587 .elementor-element.elementor-element-e75f14d{--spacer-size:50px;}.elementor-widget-divider{--divider-color:var( --e-global-color-secondary );}.elementor-widget-divider .elementor-divider__text{color:var( --e-global-color-secondary );font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-divider.elementor-view-stacked .elementor-icon{background-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon{color:var( --e-global-color-secondary );border-color:var( --e-global-color-secondary );}.elementor-widget-divider.elementor-view-framed .elementor-icon, .elementor-widget-divider.elementor-view-default .elementor-icon svg{fill:var( --e-global-color-secondary );}.elementor-587 .elementor-element.elementor-element-b04e65a{--divider-border-style:solid;--divider-color:#000;--divider-border-width:1px;}.elementor-587 .elementor-element.elementor-element-b04e65a .elementor-divider-separator{width:100%;}.elementor-587 .elementor-element.elementor-element-b04e65a .elementor-divider{padding-block-start:15px;padding-block-end:15px;}.elementor-587 .elementor-element.elementor-element-51ec130:hover{background-color:var( --e-global-color-secondary );}@media(min-width:768px){.elementor-587 .elementor-element.elementor-element-9301711{--width:101.828%;}}/* Start custom CSS for html, class: .elementor-element-51ec130 *//* DarkTechAI Design System */
:root {
    /* Colors */
    --primary: #FF6C0A;
    --secondary: #B16AFE;
    --accent: #8B5CF6;
    --background: #0D0B1A;
    --surface: #1C1A2E;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --border-color: #3C3A50;
    --input-bg: #2B293E;
    --muted: #2B293E;
    --success: #00E396;
    --warning: #FFB800;
    --info: #3ABFF8;
    --danger: #FF4560;
    --highlight: #FFD580;
    
    /* Typography */
    --font-family: 'Inter', 'Segoe UI', sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #e65c00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--muted);
    color: var(--text-primary);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-medium);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: #39374F;
    transform: translateY(-2px);
}

/* Cards */
.card {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0%, var(--surface) 50%, var(--background) 100%);
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 108, 10, 0.05), rgba(177, 106, 254, 0.05));
}

.hero-decorative-1 {
    position: absolute;
    top: 5rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(255, 108, 10, 0.1), transparent);
    border-radius: 50%;
    filter: blur(3rem);
}

.hero-decorative-2 {
    position: absolute;
    bottom: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(177, 106, 254, 0.1), transparent);
    border-radius: 50%;
    filter: blur(3rem);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.25rem;
}

.stat-number.primary { color: var(--primary); }
.stat-number.secondary { color: var(--secondary); }
.stat-number.accent { color: var(--accent); }

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-dashboard {
    position: relative;
}

.dashboard-card {
    position: relative;
    background: linear-gradient(135deg, var(--surface), var(--surface), var(--surface));
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.dashboard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 108, 10, 0.1), rgba(177, 106, 254, 0.1));
    border-radius: var(--radius-2xl);
}

.dashboard-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.balance-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(28, 26, 46, 0.5);
    border-radius: var(--radius-lg);
}

.balance-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.balance-amount {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--success);
}

.balance-icon {
    font-size: 2rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.metric-card {
    padding: 1rem;
    background: rgba(28, 26, 46, 0.5);
    border-radius: var(--radius-lg);
    text-align: center;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.metric-value {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
}

.metric-value.primary { color: var(--primary); }
.metric-value.info { color: var(--info); }

.liquidity-card {
    padding: 1rem;
    background: rgba(28, 26, 46, 0.5);
    border-radius: var(--radius-lg);
}

.liquidity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.liquidity-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.liquidity-percentage {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: rgba(43, 41, 62, 0.3);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success), var(--info));
    border-radius: var(--radius-full);
    width: 80%;
    transition: width 1s ease;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-title {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Charts Section */
.charts-section {
    padding: 4rem 0;
}

.chart-container {
    background-color: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 64rem;
    margin: 0 auto;
}

.chart-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.chart-toggle {
    background-color: var(--muted);
    border-radius: var(--radius-lg);
    padding: 0.25rem;
    display: inline-flex;
}

.toggle-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background-color: var(--primary);
    color: var(--text-primary);
}

.toggle-btn:hover:not(.active) {
    color: var(--text-primary);
}

.chart-wrapper {
    position: relative;
    height: 20rem;
    margin-bottom: 2rem;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: end;
    height: 100%;
    padding: 1rem;
}

.chart-bar-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 5rem;
}

.chart-bars-container {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
    height: 16rem;
}

.chart-bar {
    width: 1.5rem;
    border-radius: 0.25rem 0.25rem 0 0;
    transition: all 0.5s ease;
    position: relative;
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-bar.primary {
    background-color: var(--primary);
}

.chart-bar.secondary {
    background-color: var(--secondary);
}

.chart-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 1rem;
    height: 1rem;
    border-radius: var(--radius-sm);
}

.legend-color.primary {
    background-color: var(--primary);
}

.legend-color.secondary {
    background-color: var(--secondary);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: rgba(28, 26, 46, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--text-primary);
    padding: 0.25rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-name {
    margin-bottom: 0.5rem;
}

.plan-price {
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary);
}

.price-period {
    color: var(--text-secondary);
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.plan-btn {
    width: 100%;
}

/* Analytics Section */
.analytics-section {
    padding: 4rem 0;
    background: rgba(28, 26, 46, 0.2);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.analytics-card {
    background-color: var(--surface);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

.card-title {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
    margin-right: 0.75rem;
}

.card-btn {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 0.875rem;
}

/* Tasks */
.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(43, 41, 62, 0.2);
    border-radius: var(--radius-lg);
}

.task-priority {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    margin-top: 0.375rem;
    flex-shrink: 0;
}

.task-priority.high { background-color: var(--danger); }
.task-priority.medium { background-color: var(--warning); }
.task-priority.low { background-color: var(--success); }

.task-content {
    flex: 1;
    min-width: 0;
}

.task-name {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.25rem;
}

.task-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Achievements */
.achievements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(43, 41, 62, 0.2);
    border-radius: var(--radius-lg);
}

.achievement-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(0, 227, 150, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.achievement-content {
    flex: 1;
    min-width: 0;
}

.achievement-name {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.25rem;
}

.achievement-date {
    font-size: 0.75rem;
}

.achievement-date.success { color: var(--success); }
.achievement-date.info { color: var(--info); }

/* Study Progress */
.study-progress {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-name {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
}

.progress-hours {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.progress-item .progress-bar {
    height: 0.5rem;
    background: rgba(43, 41, 62, 0.3);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.progress-item .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.study-total {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.total-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.total-hours {
    font-weight: var(--font-weight-semibold);
    color: var(--primary);
}

/* Footer */
.footer {
    background: rgba(28, 26, 46, 0.5);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.brand-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.brand-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 108, 10, 0.2);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 108, 10, 0.3);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.column-title {
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
}/* End custom CSS */