:root {
    --bg-primary: rgb(26, 26, 30);
    --text-primary: rgb(255, 255, 255);
    --text-secondary: rgb(156, 163, 175);
    --accent-teal: rgb(43, 170, 191);
    --button-secondary: rgb(46, 46, 50);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

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

body {
    font-family: var(--font-stack);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
}

.navbar {
    background-color: transparent !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary) !important;
    text-decoration: none;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-teal), #22d3ee);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.brand-text {
    font-weight: 700;
    letter-spacing: -0.025em;
}

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

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

.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-teal);
    color: white;
}

.btn-primary:hover {
    background-color: #2dd4bf;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--button-secondary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: #52525b;
    color: var(--text-primary);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.hero-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    color: var(--accent-teal);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.text-accent {
    color: var(--accent-teal);
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-dashboard {
    position: relative;
}

.hero-dashboard img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.business-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

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

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

.features-section,
.how-it-works-section {
    padding: 100px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.feature-card,
.step-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover,
.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-teal);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-teal), #22d3ee);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 24px;
    color: white;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.feature-card h3,
.step-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p,
.step-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.testimonial-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-logo {
    width: 48px;
    height: 48px;
    background: var(--button-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-company {
    color: var(--text-secondary);
    font-size: 14px;
}

.cta-section {
    padding: 100px 0;
    text-align: center;
}

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

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero {
    padding: 120px 0 60px;
    text-align: center;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-cards {
    padding: 60px 0;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

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

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-card .card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-type {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-badge {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--button-secondary);
    color: var(--text-primary);
    display: inline-block;
}

.featured-badge {
    background: var(--accent-teal);
    color: white;
}

.pricing-card .card-body {
    padding: 1.5rem;
}

.price-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-teal);
}

.price-unit {
    color: var(--text-secondary);
    font-size: 14px;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.features-list {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 14px;
}

.feature-item i {
    color: var(--accent-teal);
    font-size: 12px;
}

.pricing-faq,
.pricing-cta {
    padding: 60px 0;
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.accordion-button {
    background: transparent;
    color: var(--text-primary);
    border: none;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: rgba(43, 170, 191, 0.1);
    color: var(--text-primary);
}

.accordion-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-hero {
    padding: 120px 0 60px;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-form-section {
    padding: 60px 0;
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

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

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(43, 170, 191, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-check-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

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

.form-check-label {
    color: var(--text-primary);
}

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

.success-icon {
    font-size: 48px;
    color: #10b981;
}

.thank-you-message h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-info {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-info a {
    color: var(--accent-teal);
    text-decoration: none;
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .pricing-title,
    .contact-title {
        font-size: 32px;
    }
    
    .section-title,
    .cta-title {
        font-size: 28px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    .form-check-group {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .features-section,
    .how-it-works-section,
    .testimonial-section,
    .cta-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .step-card {
        padding: 1.5rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
}
