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

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.dashboard-preview {
    width: 100%;
    max-width: 400px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--text-light);
}

.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.workflow-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step {
    flex: 1;
    text-align: center;
}

.step span {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-text {
    max-width: 700px;
    margin: auto;
}

.cta-section {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}