/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1D1D1D;
    --primary-dark: #000000;
    --secondary-color: #f2f2f2;
    --accent-color: #9C27B0;
    --text-primary: #1D1D1D;
    --text-secondary: #757575;
    --text-light: #9e9e9e;
    --background: #ffffff;
    --background-light: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 8px -2px rgb(0 0 0 / 0.15);
    --shadow-lg: 0 8px 16px -4px rgb(0 0 0 / 0.2);
    --shadow-xl: 0 16px 32px -8px rgb(0 0 0 / 0.25);
    --gradient-primary: linear-gradient(135deg, #1D1D1D 0%, #9C27B0 100%);
    --gradient-accent: linear-gradient(135deg, #9C27B0 0%, #673AB7 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.coming-soon {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.launch-info {
    background: var(--background-light);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.launch-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.launch-status i {
    font-size: 1.25rem;
}

.launch-description {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 400px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Dashboard Mockup */
.hero-image {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.mockup-header {
    background: var(--text-primary);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}



.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.mockup-dots span:first-child {
    background: #ef4444;
}

.mockup-dots span:nth-child(2) {
    background: #f59e0b;
}

.mockup-dots span:last-child {
    background: #10b981;
}

.mockup-content {
    display: flex;
    height: 400px;
}

.sidebar-minimal {
    width: 200px;
    background: var(--background-light);
    padding: 1rem;
    border-right: 1px solid var(--border-color);
}

.sidebar-item-minimal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sidebar-item-minimal:hover {
    background: rgba(29, 29, 29, 0.05);
    color: var(--text-primary);
}

.sidebar-item-minimal.active {
    background: var(--primary-color);
    color: white;
}

.sidebar-item-minimal i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.main-content-minimal {
    flex: 1;
    padding: 1.5rem;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.content-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.overview-card {
    background: var(--background-light);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.overview-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.overview-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.overview-trend {
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
}

.chart-minimal {
    display: flex;
    align-items: end;
    gap: 6px;
    height: 80px;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.chart-bar-minimal {
    flex: 1;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.chart-bar-minimal.active {
    opacity: 1;
}

.chart-bar-minimal:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.content-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.trend.up {
    color: #10b981;
    font-weight: 600;
}

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

.chart-area {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    height: 200px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
    padding-top: 2rem;
}

.bar {
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20px;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--background-light);
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Main Feature */
.feature-main {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.feature-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 400px;
}

.feature-main-text {
    padding: 3rem;
}

.feature-main-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-main-icon i {
    font-size: 2rem;
    color: white;
}

.feature-main-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-main-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item i {
    color: var(--primary-color);
    font-weight: bold;
}

.benefit-item span {
    color: var(--text-secondary);
    font-weight: 500;
}

.feature-main-visual {
    padding: 2rem;
    background: var(--background-light);
}

/* Warehouse Dashboard */
.warehouse-dashboard {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.dashboard-title {
    font-weight: 600;
    color: var(--text-primary);
}

.dashboard-status {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 500;
}

.warehouse-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.warehouse-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.warehouse-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.item-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.item-indicator.good {
    background: #10b981;
}

.item-indicator.warning {
    background: #f59e0b;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.item-stock {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.item-chart {
    width: 40px;
    height: 30px;
    display: flex;
    align-items: end;
}

.item-chart .chart-bar {
    width: 100%;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    transition: height 0.5s ease;
}

/* Features Grid Modern */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon-modern {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-modern i {
    color: white;
    font-size: 1.25rem;
}

.feature-card-modern h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.25rem;
}

.feature-card-modern p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.feature-demo {
    margin-top: auto;
}

/* Demo Components */
.demo-metric {
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.analytics-chart {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 60px;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
}

.analytics-chart .chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    transition: height 0.5s ease;
}

.crm-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.client-name {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.client-status {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.client-status.active {
    background: #10b981;
    color: white;
}

.finance-indicator {
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
}

.balance-positive {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 0.25rem;
}

.balance-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.purchase-status {
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-dot.pending {
    background: #f59e0b;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 12px;
}

.product-item {
    width: 100%;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 6px;
    opacity: 0.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Tech Stack */
.tech-stack {
    text-align: center;
    margin-bottom: 2rem;
}

.tech-stack-header {
    margin-bottom: 3rem;
}

.tech-stack-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-stack-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.tech-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    min-width: 150px;
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tech-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.tech-icon.vue {
    background: linear-gradient(135deg, #4FC08D, #42b883);
    color: white;
}

.tech-icon.quasar {
    background: linear-gradient(135deg, #1976d2, #42a5f5);
    color: white;
}

.tech-icon.api {
    background: var(--gradient-primary);
    color: white;
}

.tech-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.tech-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Features Modern */
.about-features-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.about-feature-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.about-feature-visual {
    padding: 2rem;
    background: var(--background-light);
    min-height: 366px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-content {
    padding: 2rem;
}

.about-feature-content h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.about-feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Interface Preview */
.interface-preview {
    width: 100%;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.interface-header {
    padding: 1rem;
    background: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.interface-header.dark {
    background: #2b2b2b;
}

.interface-controls {
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.interface-title {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.theme-toggle {
    color: white;
    font-size: 0.875rem;
}

.interface-body {
    display: flex;
    height: 120px;
}

.interface-sidebar {
    width: 60px;
    background: var(--background-light);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
}

.sidebar-item.active {
    background: var(--primary-color);
}

.interface-content {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content-block {
    height: 20px;
    background: var(--border-color);
    border-radius: 4px;
}

.content-block.small {
    height: 12px;
    width: 60%;
}

/* Users System */
.users-system {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 280px;
}

.user-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.user-avatar.admin {
    background: #ef4444;
}

.user-avatar.manager {
    background: #f59e0b;
}

.user-avatar.operator {
    background: #10b981;
}

.user-role {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.permissions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.permission {
    width: 100%;
    height: 8px;
    border-radius: 4px;
}

.permission.granted {
    background: #10b981;
}

.permission.denied {
    background: var(--border-color);
}

/* Reports Preview */
.reports-preview {
    width: 100%;
    max-width: 300px;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

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

.report-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.report-period {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.report-chart {
    height: 80px;
    position: relative;
    margin-bottom: 1rem;
}

.chart-line-svg {
    width: 100%;
    height: 100%;
    animation: drawLine 2s ease-in-out;
}

.chart-line-svg polyline {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawLine 2s ease-in-out forwards;
}

.chart-line-svg circle {
    opacity: 0;
    animation: fadeInPoints 0.5s ease-in-out forwards;
}

.chart-line-svg circle:nth-child(3) { animation-delay: 0.3s; }
.chart-line-svg circle:nth-child(4) { animation-delay: 0.6s; }
.chart-line-svg circle:nth-child(5) { animation-delay: 0.9s; }
.chart-line-svg circle:nth-child(6) { animation-delay: 1.2s; }
.chart-line-svg circle:nth-child(7) { animation-delay: 1.5s; }

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInPoints {
    to {
        opacity: 1;
    }
}

.report-stats {
    display: flex;
    justify-content: center;
}

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

.stat-value {
    display: block;
    font-weight: 700;
    color: #10b981;
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Import Process */
.import-process {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.import-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

.import-file i {
    font-size: 2rem;
    color: #10b981;
}

.file-name {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.import-arrow {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.import-result {
    flex: 1;
}

.import-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.import-success i {
    color: #10b981;
}

.import-success span {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.launch-timeline {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1.5rem;
    width: 3rem;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item.completed::after {
    background: var(--primary-color);
}

.timeline-item.active::after {
    background: linear-gradient(to right, var(--primary-color) 40%, var(--border-color) 100%);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    background: var(--background-light);
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.timeline-item.active .timeline-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(29, 29, 29, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(29, 29, 29, 0); }
    100% { box-shadow: 0 0 0 0 rgba(29, 29, 29, 0); }
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.timeline-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    width: 20px;
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .mockup-content {
        height: 300px;
    }

    .dashboard-mockup {
        transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
    }
    
    .sidebar-minimal {
        width: 150px;
        padding: 0.75rem;
    }
    
    .sidebar-item-minimal {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .sidebar-item-minimal i {
        font-size: 0.9rem;
    }
    
    .main-content-minimal {
        padding: 1rem;
    }
    
    .content-overview {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .chart-minimal {
        height: 60px;
        padding: 0.75rem;
    }
    
    .launch-timeline {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mockup-content {
        flex-direction: column;
        height: auto;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .sidebar-item {
        display: inline-flex;
        margin-right: 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-showcase {
        gap: 3rem;
    }
    
    .feature-main-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-main-text {
        padding: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .about-features-modern {
        grid-template-columns: 1fr;
    }
    
    .tech-items {
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-main-text {
        padding: 1.5rem;
    }
    
    .feature-main-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-main-text h3 {
        font-size: 1.5rem;
    }
    
    .about-feature-card {
        border-radius: 16px;
    }
    
    .about-feature-visual {
        padding: 1.5rem;
        min-height: 150px;
    }
    
    .about-feature-content {
        padding: 1.5rem;
    }
    
    .feature-main {
        border-radius: 16px;
    }
    
    .feature-main-visual {
        padding: 1rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem;
    }
    
    .about-feature-card:hover {
        transform: none;
    }
    
    .tech-items {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .tech-item {
        min-width: 200px;
    }
    
    .sidebar-minimal {
        width: 100%;
        padding: 0.5rem;
    }
    
    .sidebar-item-minimal {
        padding: 0.5rem;
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .sidebar-item-minimal i {
        font-size: 0.8rem;
    }
    
    .main-content-minimal {
        padding: 0.75rem;
        gap: 1rem;
    }
    
    .overview-card {
        padding: 0.75rem;
    }
    
    .overview-title {
        font-size: 0.7rem;
    }
    
    .overview-value {
        font-size: 1rem;
    }
    
    .overview-trend {
        font-size: 0.7rem;
    }
    
    .chart-minimal {
        height: 50px;
        padding: 0.5rem;
        gap: 4px;
    }
    
    .launch-timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .coming-soon {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .chart-line-svg {
        animation: none;
    }
    
    .chart-line-svg polyline {
        animation: none;
        stroke-dasharray: none;
        stroke-dashoffset: 0;
    }
    
    .chart-line-svg circle {
        opacity: 1;
        animation: none;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

 
 
