:root {
    --primary-color: #007bff;
    --danger-color: #dc3545;
    --dark-color: #1a1a1a;
    --text-dark: rgb(10, 10, 10);
    --text-muted: rgb(107, 114, 128);
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.navbar {
    padding: 0 32px;
    font-size: 16px;
}

.navbar-brand {
    color: var(--text-dark) !important;
    font-size: 16px;
}

.nav-link {
    color: var(--text-muted) !important;
    font-size: 16px;
    padding: 0 !important;
    margin: 0 16px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-dark) !important;
}

.hero-section {
    padding: 96px 0 0;
    min-height: 931.5px;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 72px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.hero-arrow {
    font-size: 24px;
    color: var(--text-muted);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.features-section,
.solutions-section {
    padding: 96px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-muted);
}

.feature-card {
    padding: 32px;
    height: 100%;
}

.feature-icon {
    font-size: 48px;
}

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

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

.feature-link {
    color: var(--danger-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--danger-color);
    text-decoration: none;
}

.solution-section {
    padding: 32px;
}

.solution-header {
    display: flex;
    align-items: center;
}

.solution-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.solution-item {
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.solution-item:last-child {
    border-bottom: none;
}

.solution-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.solution-link {
    color: var(--danger-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.solution-link:hover {
    color: var(--danger-color);
    text-decoration: none;
}

.price-tag {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-link-all {
    color: var(--danger-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-link-all:hover {
    color: var(--danger-color);
    text-decoration: none;
}

.about-section {
    padding: 96px 0;
}

.footer {
    background-color: var(--dark-color) !important;
    color: var(--white);
    padding: 96px 0 48px;
}

.footer-brand {
    font-size: 18px;
    font-weight: 600;
}

.footer-description {
    color: var(--text-muted);
    line-height: 24px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 4px;
    color: var(--text-muted);
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--white);
}

.pricing-hero {
    padding: 96px 0 48px;
}

.pricing-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-icon {
    font-size: 48px;
}

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

.pricing-price {
    margin: 24px 0;
}

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

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

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

.pricing-description {
    color: var(--text-muted);
    line-height: 24px;
}

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

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

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

.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
}

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

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

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.alert {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
        line-height: 52px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-section,
    .features-section,
    .solutions-section,
    .about-section {
        padding: 48px 0;
    }
    
    .pricing-card-featured {
        transform: none;
        margin-top: 24px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
        line-height: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .navbar {
        padding: 0 16px;
    }
}

.legal-document {
    padding: 32px;
}

.legal-document h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

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

.legal-document h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-document p {
    margin-bottom: 16px;
    line-height: 1.6;
}

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

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

.legal-document address {
    font-style: normal;
    line-height: 1.6;
    margin-top: 16px;
}
