@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

.arvento-demo-page {
    font-family: 'Montserrat', sans-serif;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.demo-header {
    text-align: center;
    padding: 60px 20px;
    background: #30afb8;
    border-radius: 16px;
    color: white;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(48, 175, 184, 0.3);
}

.demo-header h1 {
    font-size: 3em;
    margin-bottom: 16px;
    font-weight: 700;
}

.demo-header p {
    font-size: 1.2em;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.demo-content {
    background: white;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.demo-info {
    background: #f7fafc;
    border-left: 4px solid #30afb8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.demo-info h3 {
    color: #2d3748;
    margin-bottom: 12px;
    font-size: 1.3em;
}

.demo-info p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.demo-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.demo-feature {
    display: flex;
    align-items: start;
    gap: 16px;
}

.demo-feature-icon {
    width: 50px;
    height: 50px;
    background: #30afb8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex-shrink: 0;
}

.demo-feature-content h4 {
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1.1em;
}

.demo-feature-content p {
    color: #4a5568;
    font-size: 0.95em;
    line-height: 1.6;
}

.demo-cta {
    text-align: center;
    padding: 60px 40px;
    background: #30afb8;
    border-radius: 16px;
    color: white;
    margin-top: 50px;
}

.demo-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.demo-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.launch-demo-btn {
    display: inline-block;
    background: white;
    color: #30afb8;
    padding: 18px 50px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.launch-demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #30afb8;
    text-decoration: none;
}

.demo-steps {
    margin: 50px 0;
}

.demo-steps h3 {
    text-align: center;
    font-size: 2em;
    color: #2d3748;
    margin-bottom: 40px;
}

.steps-list {
    display: grid;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 24px;
    background: #f7fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #30afb8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.demo-note {
    background: #fff5f5;
    border-left: 4px solid #fc8181;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.demo-note strong {
    color: #c53030;
}

.demo-note p {
    color: #742a2a;
    margin: 8px 0 0 0;
}