/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: #ff6b35;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.nav-icon:hover {
    background: #e5e5e5;
}

.nav-icon.active {
    background: #ff6b35;
    color: white;
}

.nav-icon svg {
    width: 16px;
    height: 16px;
}

/* Buttons */
.submit-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #ff4500;
    transform: translateY(-2px);
}

/* Cards */
.feature-card {
    border: 1px solid #ff8f66;
    border-radius: 15px;
    padding: 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dashboard-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

/* Forms */
.email-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    border-color: #ff6b35;
}

.email-input::placeholder {
    color: #999;
}

/* FAQ */
.faq-item {
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 15px 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 15px 20px;
}

.faq-icon {
    font-size: 20px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
}

.footer-text {
    color: #999;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 20px;
    height: 20px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        padding: 20px 30px;
    }
    
    .email-form {
        flex-direction: column;
    }
}
