:root {
    --primary-color: rgb(104, 102, 142);
    --secondary-color: rgb(37, 110, 255);
    --accent-color: rgb(239, 131, 84);
    --background-color: rgb(250, 250, 254);
    --text-color: rgb(60, 57, 98);
    --text-muted: rgb(156, 155, 192);
    --border-color: rgb(234, 237, 243);
    --white: rgb(255, 255, 255);
    --success-color: rgb(40, 167, 69);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'trade-gothic-next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--primary-color);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.logo-text {
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

.nav-link.active {
    color: var(--secondary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--background-color) 0%, rgba(250, 250, 254, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="2" fill="%23256EFF" opacity="0.3"/><circle cx="90" cy="40" r="1.5" fill="%23256EFF" opacity="0.4"/><circle cx="85" cy="60" r="1" fill="%23256EFF" opacity="0.5"/><circle cx="75" cy="80" r="2.5" fill="%23256EFF" opacity="0.3"/></svg>') repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-announcement {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.hero-announcement .badge {
    background-color: var(--secondary-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.hero-description .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: rgba(37, 110, 255, 0.9);
    border-color: rgba(37, 110, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 110, 255, 0.3);
}

.btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 110, 255, 0.3);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 2rem 0;
}

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

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.mockup-dots span:first-child {
    background: #ff5f56;
}

.mockup-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mockup-dots span:last-child {
    background: #27ca3f;
}

.mockup-content {
    padding: 2rem;
}

.metric-card h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.metric-value {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.trusted-section {
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.7;
}

.features-section {
    padding: 5rem 0;
}

.section-subtitle {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--primary-color);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), rgba(37, 110, 255, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--primary-color);
    line-height: 1.6;
}

.insights-section {
    background: white;
    padding: 5rem 0;
}

.insights-content {
    padding: 2rem 0;
}

.insight-link {
    margin-top: 2rem;
}

.conversion-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.table-header {
    background: var(--background-color);
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.table-row {
    padding: 1rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

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

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), rgba(37, 110, 255, 0.9));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 0.5rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--secondary-color);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    color: var(--secondary-color);
}

.cta-section .btn-outline-primary {
    color: white;
    border-color: white;
}

.cta-section .btn-outline-primary:hover {
    background: white;
    color: var(--secondary-color);
}

.footer {
    background: var(--text-color);
    color: white;
}

.footer-brand h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
}

.contact-info a:hover {
    color: white;
}

.pricing-hero {
    text-align: center;
    padding: 3rem 0;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

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

.pricing-header h3 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.period {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    font-size: 1rem;
}

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

.feature-item {
    padding: 2rem 1rem;
}

.feature-item .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.feature-item h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--primary-color);
}

.accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--text-color);
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
}

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

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

.accordion-body {
    padding: 1.5rem;
    color: var(--primary-color);
    line-height: 1.6;
}

.contact-hero {
    text-align: center;
    padding: 3rem 0;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 3rem;
}

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 110, 255, 0.25);
}

.form-check-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-check {
    padding: 0.75rem;
    background: var(--background-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.thank-you-message {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h3 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.contact-info-card h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.legal-hero {
    background: var(--background-color);
    text-align: center;
    padding: 3rem 0;
}

.legal-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.legal-hero .lead {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.legal-document {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.legal-document h2 {
    color: var(--text-color);
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.legal-document p {
    color: var(--primary-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.legal-document ul {
    color: var(--primary-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-title,
    .contact-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .trusted-logos {
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-cta .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
    }
}
