.hero {
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: var(--bg-primary);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 163, 17, 0.05) 0%, rgba(252, 163, 17, 0) 70%);
    z-index: -1;
}

.cta-buttons {
    margin-bottom: var(--space-xl);
}

.hero-visual {
    margin-top: var(--space-xxl);
    display: flex;
    justify-content: center;
}

.app-mockup {
    width: 100%;
    max-width: 800px;
    background-color: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.app-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(102, 217, 239, 0.1), rgba(102, 217, 239, 0));
}

.chat-bubble {
    margin: 0 auto;
    max-width: 600px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.chat-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
}

.ai-avatar {
    background-color: var(--accent-primary);
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
}

.ai-name {
    font-weight: 600;
    font-size: 25px;
    color: var(--text-primary);
}

.chat-content {
    color: var(--text-secondary);
}

.chat-content p{
    font-size: 20px;
}