/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    line-height: 1.5;
    color: rgb(12, 10, 9);
    background-color: rgb(255, 255, 255);
}

/* Header styles */
.header-main {
    background-color: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 65px;
}

.navbar {
    height: 65px;
    padding: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.25rem;
    color: rgb(12, 10, 9) !important;
    text-decoration: none;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.logo-circle i {
    color: white;
    font-size: 16px;
}

.logo-circle-large {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.logo-circle-large i {
    color: white;
    font-size: 24px;
}

.nav-btn {
    color: rgb(12, 10, 9) !important;
    font-size: 14px;
    padding: 0 12px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    background: transparent;
}

.nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Main content */
.main-content {
    padding-top: 65px;
    min-height: 100vh;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgb(12, 10, 9);
    margin-bottom: 1rem;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgb(107, 114, 128);
    margin-bottom: 2rem;
    text-align: center;
}

.intro-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.intro-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(12, 10, 9);
    margin-bottom: 1rem;
}

.intro-text {
    color: rgb(55, 65, 81);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-text {
    font-size: 1rem;
    color: rgb(107, 114, 128);
    margin-bottom: 1.5rem;
    text-align: center;
}

.start-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

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

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 14px;
    color: rgb(107, 114, 128);
}

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

/* Footer */
.footer-main {
    background-color: rgb(12, 10, 9);
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-copyright {
    font-size: 14px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-btn {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
}

.footer-btn:hover {
    color: white !important;
}

/* Modal styles */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: rgb(12, 10, 9);
}

.modal-body {
    padding: 1.5rem;
}

/* Pricing cards */
.pricing-card {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 1rem;
}

.pricing-card:hover {
    border-color: #667eea;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
}

.pricing-card.featured {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h6 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(12, 10, 9);
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(107, 114, 128);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(12, 10, 9);
}

.period {
    font-size: 1rem;
    color: rgb(107, 114, 128);
}

.plan-desc {
    color: rgb(107, 114, 128);
    margin-bottom: 1.5rem;
    font-size: 14px;
}

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

.feature-list li {
    margin-bottom: 0.75rem;
    font-size: 14px;
    color: rgb(55, 65, 81);
}

/* Form styles */
.form-control {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.75rem;
    font-size: 14px;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-label {
    font-weight: 500;
    color: rgb(12, 10, 9);
    margin-bottom: 0.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .intro-section {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 1rem 0;
    }
    
    .intro-section {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
}

/* Legal content styles */
.legal-content {
    line-height: 1.7;
}

.legal-content h2 {
    color: rgb(12, 10, 9);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: rgb(55, 65, 81);
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: rgb(55, 65, 81);
}

.contact-info {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

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

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

.feature-highlight h5 {
    font-weight: 600;
    color: rgb(12, 10, 9);
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: rgb(107, 114, 128);
    font-size: 14px;
}

/* Button animations */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-outline-primary {
    border-color: #667eea;
    color: #667eea;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}
