/* Background styling and effects */
body {
    background-color: #f8f9fa;
}

/* Subtle divider styling */
.subtle-divider {
    height: 1px;
    background-color: rgba(77, 93, 110, 0.2);
    width: 50%;
    margin: 15px auto;
}

/* Demo Chat Section Styling */
.demo-chat {
    background-color: #f5f7fa;
}

.chat-container {
    max-width: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    font-family: mollen-regular;
    position: relative;
}

.chat-header {
    background-color: #4D5D6E;
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    font-family: mollen-bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    padding: 20px;
    max-height: 650px;
    overflow-y: auto;
}

.assistant-response, .user-query {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 10px;
    width: 85%;
}

.assistant-response {
    background-color: #DEE5EC;
}

.user-query {
    background-color: #4D5D6E;
    color: white;
    margin-left: auto;
}

.chat-body ul {
    padding-left: 20px;
    margin-top: 10px;
}

.chat-body ul li {
    margin-bottom: 8px;
}

.chat-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #DEE5EC;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #DEE5EC;
    border-radius: 5px;
    margin-right: 10px;
    outline: none;
}

.chat-input button {
    background-color: #4D5D6E;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-input button:disabled, 
.chat-input input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.comparison-item {
    flex: 1;
    min-width: 250px;
    padding: 15px;
    background-color: #f0f3f7;
    border-radius: 10px;
}

.comparison-item h3 {
    font-family: mollen-bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #4D5D6E;
}

/* Chat Demo Controls */
.chat-demo-controls {
    margin-bottom: 15px;
}

.chat-guide {
    text-align: center;
    margin-bottom: 10px;
}

.guide-text {
    font-family: mollen-regular;
    font-size: 0.8rem;
    color: #7a8a9a;
    font-style: italic;
}

.chat-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.nav-arrow {
    background: #4D5D6E;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 36px;
    height: 36px;
}

.nav-arrow:hover:not(:disabled) {
    background-color: #3d4b5a;
    transform: scale(1.05);
}

.nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #9ca6b0;
}

.message-counter {
    font-family: mollen-regular;
    font-size: 0.9rem;
    color: #4D5D6E;
    font-weight: bold;
}

.chat-message {
    transition: all 0.4s ease;
    position: relative;
}

/* Pricing Section Styling */
.pricing {
    background-color: #f8f9fa;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(222, 229, 236, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.pricing .container-lg {
    position: relative;
    z-index: 1;
}

.price-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    background-color: #f0f4fa;
    border: 2px solid #4D5D6E;
    box-shadow: 0 8px 35px rgba(77, 93, 110, 0.15);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4D5D6E;
    color: white;
    font-family: mollen-bold;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 0.05rem;
}

.price-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(77, 93, 110, 0.1);
}

.price-header h2 {
    font-family: mollen-bold;
    color: #4D5D6E;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.price-header .price {
    margin-bottom: 15px;
}

.price-header .price .amount {
    font-family: mollen-bold;
    font-size: 2.5rem;
    color: #4D5D6E;
}

.price-header .price .period {
    font-size: 1rem;
    color: #7a8a9a;
}

.price-header p {
    color: #7a8a9a;
    font-size: 0.9rem;
}

.price-features {
    padding: 25px 0;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: #4D5D6E;
}

.price-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4D5D6E;
    font-weight: bold;
}

.price-cta {
    text-align: center;
    padding-top: 15px;
}

.price-card.featured .solid-btn {
    background-color: #4D5D6E;
}

.price-card.featured .price-header .amount {
    color: #3d4b5a;
}

.pricing-note {
    color: #7a8a9a;
    font-size: 0.9rem;
    padding: 15px 25px;
    background-color: rgba(222, 229, 236, 0.3);
    border-radius: 10px;
    display: inline-block;
}

.pricing-note a {
    color: #4D5D6E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.pricing-note a:hover {
    color: #3d4b5a;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .price-card {
        margin-bottom: 30px;
    }
}

.industry-selector select {
    background-color: #3d4b5a;
    color: white;
    border: 1px solid #5a6a7a;
    border-radius: 8px;
    padding: 8px 12px;
    font-family: mollen-regular;
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.industry-selector select:hover {
    background-color: #2c3842;
    border-color: #6a7a8a;
}

.industry-selector select:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.industry-selector select option {
    background-color: #3d4b5a;
    color: white;
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #4D5D6E;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #3d4b5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 93, 110, 0.3);
    color: white;
}

.social-link svg {
    width: 20px;
    height: 20px;
} 