:root {
    --primary-color: #FF8C00;
    --primary-hover: #FF7700;
    --secondary-color: #2C3E50;
    --accent-color: #3498DB;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --bg-section: #FAFBFC;
    --border-color: #E9ECEF;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #FF8C00 0%, #FF7700 100%);
    --gradient-secondary: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition);
}

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

.navbar {
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    background: var(--white) !important;
}

.navbar-brand {
    text-decoration: none;
}

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

.logo-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
}

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

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

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-intro-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.intro-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-text {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.hero-actions {
    margin-top: 2rem;
}

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

.platform-preview {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
}

.preview-header {
    text-align: center;
    margin-bottom: 2rem;
}

.preview-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.features-section {
    padding: 80px 0;
    background: var(--white);
}

.feature-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 400px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.integration-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.integration-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.integration-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.controls-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.controls-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.control-category {
    text-align: center;
    padding: 2rem;
}

.control-title {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.control-list {
    list-style: none;
    padding: 0;
}

.control-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.security-section {
    padding: 80px 0;
    background: var(--white);
}

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

.security-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.security-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.badge-circle i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.badge-text strong {
    font-size: 1.2rem;
    font-weight: 700;
}

.badge-text span {
    font-size: 1rem;
    font-weight: 500;
}

.deployment-section {
    padding: 80px 0;
    background: var(--bg-section);
}

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

.deployment-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 400px;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.logo-item i {
    font-size: 2rem;
    color: var(--text-light);
}

.partner-name {
    font-weight: 700;
    color: var(--primary-color);
}

.custom-logo {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.platform-features-section {
    padding: 80px 0;
    background: var(--white);
}

.platform-features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

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

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

.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-actions .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-hover);
}

.cta-actions .btn-outline-primary {
    border-color: var(--white);
    color: var(--white);
}

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

.contact-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px 16px;
    font-size: 1rem;
    transition: var(--transition);
}

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

.thank-you-message {
    margin-top: 2rem;
}

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

.footer-brand .logo-container {
    margin-bottom: 1rem;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.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: var(--transition);
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.contact-info i {
    width: 20px;
    margin-right: 8px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-intro-section {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        grid-template-columns: 1fr;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .cta-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}

.pricing-hero {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

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

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

.pricing-plans {
    padding: 60px 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.price {
    margin-bottom: 2rem;
}

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

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

.period {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1rem;
}

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

.pricing-features-section {
    padding: 80px 0;
    background: var(--bg-section);
}

.pricing-features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-item-pricing {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item-pricing .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.feature-item-pricing .feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-item-pricing h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.pricing-faq {
    padding: 80px 0;
    background: var(--white);
}

.pricing-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

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

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

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
}

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

.pricing-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-cta .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.pricing-cta .btn-primary:hover {
    background: var(--bg-light);
    color: var(--primary-hover);
}

.legal-hero {
    padding: 80px 0 40px;
    background: var(--bg-light);
}

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

.legal-hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 0;
    background: var(--white);
}

.legal-document {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-document h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
}

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

.legal-document h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-document p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-document ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-document li {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.contact-details p {
    margin-bottom: 0;
    line-height: 1.6;
}

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

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

.last-updated {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.last-updated p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .legal-hero h1 {
        font-size: 2.5rem;
    }
    
    .legal-document {
        padding: 2rem;
    }
}
