:root {
    --primary-color: rgb(91, 64, 222);
    --primary-hover: rgb(91, 65, 255);
    --primary-dark: rgb(47, 32, 139);
    --light-bg: rgb(220, 228, 237);
    --light-gray: rgb(238, 238, 238);
    --white: rgb(255, 255, 255);
    --overlay: rgba(0, 0, 0, 0.7);
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 38px;
    line-height: 49.4px;
}

h2 {
    font-size: 40px;
    line-height: 48px;
}

h3 {
    font-size: 20px;
    line-height: 28px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 13px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 13px 40px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-container {
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 0;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.mockup-header {
    background: var(--light-gray);
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mockup-tabs {
    display: flex;
    gap: 20px;
}

.tab {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: var(--primary-color);
    color: white;
}

.mockup-content {
    padding: 30px 20px;
}

.metric-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.metric-card:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

.metric-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

.metric-change {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.metric-change.positive {
    background: #d4edda;
    color: #155724;
}

.chart-area {
    height: 120px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.chart-bars {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 100%;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, var(--primary-color), var(--primary-hover));
    border-radius: 2px 2px 0 0;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
}

.trusted-by-section {
    background-color: var(--light-bg);
}

.company-logo {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 18px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.pricing-preview-section {
    background-color: var(--light-bg);
}

.pricing-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 100px 0 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

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

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.plan-price {
    margin-bottom: 15px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 5px;
}

.plan-description {
    color: var(--text-muted);
    line-height: 1.6;
}

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

.pricing-footer {
    text-align: center;
}

.comparison-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
    background: var(--light-gray);
    font-weight: 600;
    padding: 20px 15px;
    border: none;
}

.comparison-table td {
    padding: 15px;
    border-color: #f0f0f0;
    vertical-align: middle;
}

.featured-col {
    background: var(--primary-color);
    color: white;
}

.contact-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 100px 0 50px;
}

.contact-form-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

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

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(91, 64, 222, 0.25);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-loading {
    display: none;
}

.thank-you-container {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    font-size: 64px;
    color: #28a745;
}

.thank-you-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.contact-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-description {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 32px;
    display: block;
}

.benefit-item h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-muted);
    margin: 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: var(--white);
    border: none;
    font-weight: 600;
    color: var(--text-dark);
    padding: 20px 25px;
    font-size: 16px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-muted);
    line-height: 1.6;
}

.legal-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 100px 0 50px;
}

.legal-document {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 50px;
    line-height: 1.7;
}

.legal-document h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

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

.legal-document h3 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-document p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.legal-document ul {
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-document li {
    margin-bottom: 8px;
}

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

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

@media (max-width: 768px) {
    .legal-document {
        padding: 30px 25px;
    }
    
    .legal-document h2 {
        font-size: 20px;
    }
    
    .legal-document h3 {
        font-size: 16px;
    }
}

.pricing-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
}

.pricing-header h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-dark);
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.tier-item.featured {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.tier-name {
    font-weight: 500;
}

.tier-price {
    font-size: 18px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.solution-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.solution-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.chart-container {
    position: relative;
}

.progress-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--primary-color) 85%, #e0e0e0 85%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring::before {
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    position: absolute;
}

.progress-value {
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: var(--primary-color);
}

.funnel-chart {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.funnel-stage {
    height: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-hover));
    border-radius: 2px;
}

.growth-chart {
    height: 80px;
    display: flex;
    align-items: end;
    justify-content: center;
}

.growth-bars {
    display: flex;
    gap: 8px;
    align-items: end;
    height: 100%;
}

.growth-bar {
    width: 15px;
    background: linear-gradient(to top, var(--primary-color), var(--primary-hover));
    border-radius: 2px 2px 0 0;
}

.solution-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.solution-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer {
    background-color: #1a1a1a !important;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: #adb5bd;
    line-height: 1.6;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

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

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

.contact-info {
    color: #adb5bd;
}

.contact-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-item a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border-color: #333;
    margin: 2rem 0 1rem;
}

.copyright {
    color: #adb5bd;
    margin: 0;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .dashboard-mockup {
        margin-top: 2rem;
    }
    
    .pricing-mockup {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .feature-card,
    .solution-card {
        padding: 30px 20px;
    }
}
