/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: rgb(27, 27, 31);
    color: rgb(228, 235, 241);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(27, 27, 31, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(228, 235, 241, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgb(27, 27, 31);
    border-radius: 50%;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: rgb(228, 235, 241);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: rgb(131, 142, 149);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: rgb(228, 235, 241);
}

.new-badge {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-button {
    background-color: rgb(228, 235, 241);
    color: rgb(25, 25, 29);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(228, 235, 241, 0.1);
    border: 1px solid rgba(228, 235, 241, 0.2);
    border-radius: 100px;
    padding: 8px 16px;
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 32px;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: rgb(228, 235, 241);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 20px;
    color: rgb(131, 142, 149);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background-color: rgb(228, 235, 241);
    color: rgb(25, 25, 29);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-bottom: 64px;
}

.hero-cta:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(-2px);
}

/* Demo Interface */
.hero-demo {
    max-width: 1000px;
    margin: 0 auto;
}

.demo-interface {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    min-height: 500px;
}

.demo-sidebar {
    width: 280px;
    background: rgba(0, 0, 0, 0.3);
    padding: 24px;
    border-right: 1px solid rgba(228, 235, 241, 0.1);
}

.demo-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.demo-logo-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
}

.demo-nav {
    margin-bottom: 24px;
}

.demo-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 4px;
}

.demo-section-title {
    font-size: 12px;
    font-weight: 600;
    color: rgb(131, 142, 149);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 16px 0 8px;
}

.demo-item {
    font-size: 14px;
    color: rgb(131, 142, 149);
    padding: 4px 0;
    cursor: pointer;
}

.demo-item:hover {
    color: rgb(228, 235, 241);
}

.demo-main {
    flex: 1;
    padding: 24px;
}

.demo-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(228, 235, 241, 0.1);
}

.demo-tab {
    font-size: 14px;
    color: rgb(131, 142, 149);
    padding: 8px 0;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.demo-tab.active {
    color: rgb(228, 235, 241);
    border-bottom-color: #e91e63;
}

.demo-content {
    position: relative;
}

.demo-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(40px);
}

.demo-query {
    background: rgba(228, 235, 241, 0.1);
    border: 1px solid rgba(228, 235, 241, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-response {
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.demo-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.demo-action {
    background: rgba(228, 235, 241, 0.1);
    border: 1px solid rgba(228, 235, 241, 0.2);
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
    color: rgb(131, 142, 149);
}

.demo-query-section {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 16px;
    align-items: center;
}

.demo-chart {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 120px;
}

.chart-bar {
    background: linear-gradient(to top, #e91e63, #ff6b9d);
    width: 16px;
    border-radius: 2px 2px 0 0;
    min-height: 8px;
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: rgba(228, 235, 241, 0.02);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.intro-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.intro-content p {
    font-size: 18px;
    color: rgb(131, 142, 149);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.intro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

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

.intro-feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.intro-feature p {
    font-size: 16px;
    color: rgb(131, 142, 149);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-text {
    font-size: 20px;
    color: rgb(131, 142, 149);
    margin-bottom: 32px;
    line-height: 1.6;
}

.solution-text {
    font-size: 20px;
    color: rgb(131, 142, 149);
    line-height: 1.6;
}

.problem-text strong,
.solution-text strong {
    color: rgb(228, 235, 241);
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgba(228, 235, 241, 0.02);
}

.features-grid {
    display: grid;
    gap: 48px;
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.feature-card:nth-child(even) {
    direction: rtl;
}

.feature-card:nth-child(even) > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-content p {
    font-size: 18px;
    color: rgb(131, 142, 149);
    margin-bottom: 24px;
}

.feature-cta {
    background-color: rgb(228, 235, 241);
    color: rgb(25, 25, 29);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-block;
    transition: all 0.2s ease;
}

.feature-cta:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(-1px);
}

.feature-demo {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.feature-demo-content {
    padding: 24px;
}

.feature-query {
    background: rgba(228, 235, 241, 0.1);
    border: 1px solid rgba(228, 235, 241, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.feature-response {
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-query-section {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 16px;
}

.feature-table {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(228, 235, 241, 0.1);
    font-size: 12px;
    font-weight: 600;
    color: rgb(131, 142, 149);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    padding: 12px 16px;
    font-size: 14px;
    border-top: 1px solid rgba(228, 235, 241, 0.1);
}

.feature-insight {
    font-size: 14px;
    color: rgb(131, 142, 149);
    font-style: italic;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(228, 235, 241, 0.1);
    padding: 48px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgb(131, 142, 149);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: rgb(228, 235, 241);
}

.footer-description {
    font-size: 16px;
    color: rgb(131, 142, 149);
    margin-top: 16px;
}

.contact-info p {
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 8px;
}

.contact-info a {
    color: rgb(228, 235, 241);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(228, 235, 241, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgb(131, 142, 149);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 42px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .demo-interface {
        flex-direction: column;
    }
    
    .demo-sidebar {
        width: 100%;
    }
    
    .feature-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}

/* Pricing Page Styles */
.pricing-main {
    padding-top: 64px;
}

.pricing-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.pricing-title {
    font-size: 48px;
    font-weight: 600;
    color: rgb(228, 235, 241);
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 20px;
    color: rgb(131, 142, 149);
}

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

.pricing-header {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pricing-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.pricing-description {
    font-size: 16px;
    color: rgb(131, 142, 149);
    margin: 0;
}

.contact-us-btn {
    background-color: rgb(228, 235, 241);
    color: rgb(25, 25, 29);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.contact-us-btn:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(-1px);
}

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

.pricing-card {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 12px;
    padding: 32px;
    position: relative;
}

.pricing-card.featured {
    background: rgba(228, 235, 241, 0.08);
    border-color: rgba(228, 235, 241, 0.2);
    transform: scale(1.05);
}

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

.pricing-plan-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.price {
    font-size: 48px;
    font-weight: 700;
}

.pricing-period {
    font-size: 14px;
    color: rgb(131, 142, 149);
}

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

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

.pricing-feature svg {
    color: #4ade80;
    flex-shrink: 0;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    transition: all 0.2s ease;
    width: 100%;
}

.pricing-cta.primary {
    background-color: rgb(228, 235, 241);
    color: rgb(25, 25, 29);
}

.pricing-cta.primary:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(-1px);
}

.pricing-cta.secondary {
    background: rgba(228, 235, 241, 0.1);
    border: 1px solid rgba(228, 235, 241, 0.2);
    color: rgb(228, 235, 241);
}

.pricing-cta.secondary:hover {
    background: rgba(228, 235, 241, 0.2);
    transform: translateY(-1px);
}

/* Contact Page Styles */
.contact-main {
    padding-top: 64px;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-title {
    font-size: 36px;
    font-weight: 600;
    color: rgb(228, 235, 241);
    margin-bottom: 16px;
}

.contact-subtitle {
    font-size: 18px;
    color: rgb(131, 142, 149);
    margin-bottom: 24px;
}

.contact-description {
    font-size: 16px;
    color: rgb(131, 142, 149);
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-required {
    font-size: 14px;
    color: rgb(131, 142, 149);
    font-style: italic;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgb(228, 235, 241);
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: rgba(228, 235, 241, 0.1);
    border: 1px solid rgba(228, 235, 241, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: rgb(228, 235, 241);
    transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #e91e63;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 12px;
    color: rgb(131, 142, 149);
    margin-top: 4px;
    font-style: italic;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
}

.form-checkbox label {
    font-size: 12px;
    color: rgb(131, 142, 149);
    margin-bottom: 0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
}

.checkbox-item label {
    font-size: 14px;
    color: rgb(131, 142, 149);
    margin-bottom: 0;
}

.form-submit {
    background-color: rgb(228, 235, 241);
    color: rgb(25, 25, 29);
    border: none;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    width: 100%;
    cursor: pointer;
}

.form-submit:hover {
    background-color: rgb(255, 255, 255);
    transform: translateY(-1px);
}

.thank-you-message {
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
}

.thank-you-content {
    max-width: 400px;
    margin: 0 auto;
}

.thank-you-icon {
    color: #4ade80;
    margin-bottom: 24px;
}

.thank-you-message h2 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(228, 235, 241);
    margin-bottom: 16px;
}

.thank-you-message p {
    font-size: 16px;
    color: rgb(131, 142, 149);
    margin-bottom: 16px;
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .intro-content h2 {
        font-size: 28px;
    }
    
    .feature-content h3 {
        font-size: 24px;
    }
    
    .pricing-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Legal Pages Styles */
.legal-main {
    padding-top: 64px;
}

.legal-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: rgba(228, 235, 241, 0.02);
}

.legal-title {
    font-size: 48px;
    font-weight: 600;
    color: rgb(228, 235, 241);
    margin-bottom: 16px;
}

.legal-subtitle {
    font-size: 16px;
    color: rgb(131, 142, 149);
}

.legal-content {
    padding: 40px 0 80px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(228, 235, 241, 0.05);
    border: 1px solid rgba(228, 235, 241, 0.1);
    border-radius: 12px;
    padding: 48px;
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 600;
    color: rgb(228, 235, 241);
    margin-bottom: 16px;
    margin-top: 32px;
}

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

.legal-document h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(228, 235, 241);
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-document p {
    font-size: 16px;
    color: rgb(131, 142, 149);
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.legal-document li {
    font-size: 16px;
    color: rgb(131, 142, 149);
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-details {
    background: rgba(228, 235, 241, 0.1);
    border: 1px solid rgba(228, 235, 241, 0.2);
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.contact-details p {
    margin-bottom: 8px;
}

.contact-details a {
    color: rgb(228, 235, 241);
    text-decoration: none;
}

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