:root {
    --primary-color: #d0ff6b;
    --dark-text: #050505;
    --nav-text: #141414;
    --light-text: #666666;
    --background: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--background);
}

.top-banner {
    background: linear-gradient(90deg, #d0ff6b 0%, #a8e6cf 50%, #d0ff6b 100%);
    color: var(--dark-text);
    font-size: 13px;
    font-weight: 500;
}

.banner-text {
    text-decoration: none;
    color: var(--dark-text);
}

.logo {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    text-decoration: none;
}

.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.navbar-nav .nav-link {
    color: var(--nav-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--dark-text);
}

.btn {
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-text);
    padding: 12px 24px 12px 24px;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: #c4f55a;
    border-color: #c4f55a;
    color: var(--dark-text);
    transform: translateY(-1px);
}

.btn-outline-dark {
    border-color: var(--dark-text);
    color: var(--dark-text);
    padding: 12px 16px;
    font-size: 15px;
}

.btn-outline-dark:hover {
    background-color: var(--dark-text);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

.min-vh-75 {
    min-height: 75vh;
}

.hero-badge {
    display: inline-block;
    background-color: var(--light-bg);
    color: var(--dark-text);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--dark-text);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-demo {
    position: relative;
}

.demo-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.demo-header {
    background: #f8f9fa;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.demo-tabs {
    display: flex;
    gap: 24px;
}

.demo-tab {
    font-size: 14px;
    font-weight: 500;
    color: var(--light-text);
    cursor: pointer;
}

.demo-tab.active {
    color: var(--dark-text);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
}

.demo-content {
    padding: 24px;
}

.demo-query {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    background: white;
}

.demo-query i {
    color: var(--light-text);
    width: 16px;
}

.demo-query span {
    flex: 1;
    font-size: 14px;
}

.demo-results {
    margin-top: 24px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.results-header {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 12px 16px;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.results-table {
    background: white;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1fr;
    gap: 16px;
    padding: 12px 16px;
    font-size: 13px;
}

.table-header {
    background: var(--light-bg);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
}

.table-row {
    border-bottom: 1px solid var(--border-color);
}

.table-row:last-child {
    border-bottom: none;
}

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

.section-title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 32px;
}

.video-container {
    position: relative;
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--light-text);
}

.video-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--dark-text);
}

.feature-card h3 {
    font-size: 12px;
    font-weight: 600;
    color: var(--light-text);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-card h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-link {
    color: var(--dark-text);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-color);
}

.feature-list {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.team-avatars {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-preview-card {
    background: white;
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.pricing-table {
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 32px;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.price-display {
    margin-bottom: 16px;
}

.price-display .price {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--dark-text);
}

.price-display .price-unit {
    font-size: 16px;
    color: var(--light-text);
    margin-left: 8px;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-action {
    margin-top: auto;
}

.included-feature {
    text-align: center;
    padding: 24px;
}

.included-feature .feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.included-feature .feature-icon i {
    font-size: 24px;
    color: var(--dark-text);
}

.included-feature h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.included-feature p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.5;
}

.faq-section {
    margin-top: 40px;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--dark-text);
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.6;
}

.legal-content {
    margin-top: 40px;
}

.legal-content h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--dark-text);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.6;
    color: var(--light-text);
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--light-text);
    line-height: 1.6;
}

.contact-details {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 8px;
    margin-top: 16px;
}

.contact-details p {
    margin-bottom: 8px;
    color: var(--dark-text);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.pricing-header h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}

.pricing-range {
    margin-bottom: 32px;
}

.price {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--dark-text);
}

.price-note {
    font-size: 16px;
    color: var(--light-text);
    margin-left: 8px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.pricing-feature i {
    color: var(--primary-color);
    font-size: 16px;
}

.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.form-label {
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(208, 255, 107, 0.25);
}

.thank-you-message {
    text-align: center;
    padding: 48px;
}

.thank-you-message i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.thank-you-message h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer {
    background: var(--dark-text);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #cccccc;
    line-height: 1.6;
}

.footer h5 {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 8px;
    color: #cccccc;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Success message overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-in-out;
}

.success-message {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    margin: 1rem;
    animation: slideIn 0.3s ease-in-out;
}

.success-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.success-message h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.success-message p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Pricing card transitions */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .contact-form-container,
    .pricing-preview-card {
        padding: 32px;
    }
    
    .demo-content {
        padding: 16px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .team-avatars {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .price {
        font-size: 36px;
    }
}
