/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, #1c64f2 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Styles */
.header-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: #1c64f2;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.navbar-nav .nav-link {
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #1c64f2;
}

.btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #1c64f2;
    color: white;
    border: 1px solid #1c64f2;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(28, 100, 242, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: #1c64f2;
    border: 1px solid #1c64f2;
}

.btn-outline-primary:hover {
    background: #1c64f2;
    color: white;
    transform: translateY(-1px);
}

.btn-dark {
    background: #111827;
    color: white;
    border: 1px solid #111827;
}

.btn-dark:hover {
    background: #1f2937;
    border-color: #1f2937;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.3);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(28, 100, 242, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-bottom: 3rem;
}

.lead-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.upload-area {
    border: 2px dashed #d1d5db;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-area:hover {
    border-color: #1c64f2;
    background: #f8fafc;
}

.upload-icon {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.upload-subtext {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Introduction Section */
.intro-section {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.intro-text {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Features Section */
.features-section {
    background: white;
    padding: 5rem 0;
}

.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #1c64f2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1c64f2 0%, #7c3aed 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
}

.stats-icon {
    font-size: 3rem;
    color: #1c64f2;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    font-size: 2rem;
    color: #1c64f2;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.pricing-icon {
    font-size: 3rem;
    color: #1c64f2;
    margin-bottom: 1rem;
}

.pricing-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #1c64f2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: #1c64f2;
    box-shadow: 0 10px 25px rgba(28, 100, 242, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1c64f2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.pricing-subtitle {
    color: #6b7280;
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-currency {
    font-size: 1.5rem;
    color: #6b7280;
    vertical-align: top;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
}

.price-period {
    color: #6b7280;
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #374151;
}

.pricing-features i {
    color: #10b981;
    margin-right: 0.75rem;
}

.pricing-note {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.pricing-highlight {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    color: #0c4a6e;
}

.pricing-highlight i {
    color: #0ea5e9;
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 5rem 0;
}

.testimonials-icon {
    font-size: 3rem;
    color: #1c64f2;
    margin-bottom: 1rem;
}

.testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #1c64f2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-avatar {
    font-size: 2.5rem;
    color: #9ca3af;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.author-title {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer-section {
    background: #111827;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1c64f2;
}

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #1c64f2;
}

.footer-divider {
    border-color: #374151;
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: #9ca3af;
    margin: 0;
}

.footer-copyright a {
    color: #1c64f2;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-actions {
        margin-top: 1rem;
    }
    
    .navbar-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .upload-area {
        padding: 2rem 1rem;
    }
    
    .feature-card,
    .pricing-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-price .price-amount {
        font-size: 2.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-5 { padding: 3rem 0; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.text-white { color: white; }

/* Legal Pages Styles */
.legal-content-section {
    background: #f8fafc;
    min-height: 80vh;
}

.legal-document {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.legal-header {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.legal-icon {
    font-size: 3rem;
    color: #1c64f2;
    margin-bottom: 1rem;
}

.legal-content h2 {
    color: #111827;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.legal-content h3 {
    color: #374151;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    color: #4b5563;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #4b5563;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info-box {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.contact-info-box h4 {
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.contact-info-box p {
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.contact-info-box a {
    color: #0ea5e9;
    text-decoration: none;
}

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

/* Contact Page Styles */
.contact-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(28, 100, 242, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-section {
    background: white;
}

.contact-form-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.form-icon {
    font-size: 3rem;
    color: #1c64f2;
    margin-bottom: 1rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #1c64f2;
    box-shadow: 0 0 0 3px rgba(28, 100, 242, 0.1);
    outline: none;
}

.form-check-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input {
    margin: 0;
}

.form-check-label {
    color: #4b5563;
    font-size: 0.9rem;
    margin: 0;
}

.contact-info-section {
    background: #f8fafc;
}

.contact-info-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #1c64f2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1c64f2 0%, #7c3aed 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.contact-info-card p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-link {
    color: #1c64f2;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-address {
    color: #4b5563;
    font-style: normal;
    line-height: 1.6;
}

.faq-section {
    background: white;
}

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    color: #374151;
    font-weight: 600;
    border: none;
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: #1c64f2;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(28, 100, 242, 0.1);
}

.accordion-body {
    padding: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Alert Styles */
.alert {
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #10b981;
    color: #065f46;
}

.alert-success h4 {
    color: #065f46;
    margin-bottom: 0.5rem;
}

.alert-success ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.alert-success li {
    margin-bottom: 0.25rem;
}
