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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: #303245;
    background-color: #ffffff;
}

/* Container System */
.container-custom {
    max-width: 1305px;
    margin: 0 115px;
    padding: 0 15px;
}

@media (max-width: 1535px) {
    .container-custom {
        margin: 0 auto;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container-custom {
        padding: 0 20px;
    }
}

/* Top Banner */
.top-banner {
    background: rgb(157, 96, 251);
    padding: 12px 0;
    text-align: center;
}

.banner-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.banner-link:hover {
    color: white;
    text-decoration: none;
}

.learn-more {
    text-decoration: underline;
    margin-left: 5px;
}

/* Header */
.main-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    height: 80px;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: rgb(157, 96, 251);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #303245;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #303245;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: rgb(157, 96, 251);
    text-decoration: none;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.github-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    color: #303245;
}

.btn-primary {
    background: rgb(157, 96, 251);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: rgb(137, 76, 231);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: rgb(157, 96, 251);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgb(157, 96, 251);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: rgb(157, 96, 251);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 100px 0 50px;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 67.2px;
    color: #303245;
    margin-bottom: 40px;
}

.hero-intro {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-size: 32px;
    font-weight: 700;
    color: rgb(157, 96, 251);
    margin-bottom: 24px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 48px 0 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #303245;
    margin-bottom: 24px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgb(157, 96, 251);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgb(157, 96, 251);
    margin-bottom: 24px;
    transition: all 0.2s ease;
}

.service-btn:hover {
    background: rgb(157, 96, 251);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.service-video {
    width: 100%;
    height: 200px;
    background: #000;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-icon {
    font-size: 48px;
    color: rgb(157, 96, 251);
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 60px;
    height: 60px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Features Section */
.features-section {
    padding: 70px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #303245;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgb(157, 96, 251);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #303245;
    margin-bottom: 12px;
}

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

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    background: white;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #303245;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: rgb(157, 96, 251);
    text-decoration: none;
}

.footer-description {
    color: #d1d5db;
    font-size: 14px;
    margin-top: 16px;
}

.contact-info p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info a {
    color: rgb(157, 96, 251);
    text-decoration: none;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
        line-height: 1.2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 16px;
    }
    
    .navbar-nav {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .intro-title {
        font-size: 24px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .container-custom {
        margin: 0 auto;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #303245;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgb(157, 96, 251);
    box-shadow: 0 0 0 3px rgba(157, 96, 251, 0.1);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 14px;
    margin-top: 4px;
}

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

.alert-success {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Pricing Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgb(157, 96, 251);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(157, 96, 251, 0.1);
}

.pricing-card.featured {
    border-color: rgb(157, 96, 251);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(157, 96, 251);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: #303245;
    margin-bottom: 8px;
}

.pricing-subtitle {
    color: #6b7280;
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    color: rgb(157, 96, 251);
    margin-bottom: 8px;
}

.pricing-period {
    color: #6b7280;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    color: #303245;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li i {
    color: rgb(157, 96, 251);
    font-size: 16px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 48px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #303245;
    margin-bottom: 16px;
}

.contact-form p {
    color: #6b7280;
    margin-bottom: 32px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #303245;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: rgb(157, 96, 251);
}

.contact-info-section {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
    height: fit-content;
}

.contact-info-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #303245;
    margin-bottom: 32px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgb(157, 96, 251);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #303245;
    margin-bottom: 4px;
}

.contact-text p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.contact-text a {
    color: rgb(157, 96, 251);
    text-decoration: none;
}

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

.response-time {
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.response-time h3 {
    font-size: 18px;
    font-weight: 600;
    color: #303245;
    margin-bottom: 12px;
}

.response-time p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Calculator Styles */
.pricing-calculator {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.calculator-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 32px;
}

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

.result-label {
    display: block;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}

.result-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: rgb(157, 96, 251);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact-form,
    .contact-info-section {
        padding: 24px;
    }
    
    .pricing-calculator {
        padding: 24px;
    }
}

/* Legal Content Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #303245;
    margin-top: 40px;
    margin-bottom: 16px;
}

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

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #303245;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.legal-content ul li {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content .contact-info {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-top: 24px;
}

.legal-content .contact-info p {
    margin-bottom: 8px;
}

.legal-content .contact-info a {
    color: rgb(157, 96, 251);
    text-decoration: none;
}

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

/* Pricing Page Additional Styles */
.pricing-info {
    margin: 80px 0;
    text-align: center;
}

.pricing-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: #303245;
    margin-bottom: 48px;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.qualification-item {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.qualification-icon {
    width: 64px;
    height: 64px;
    background: rgb(157, 96, 251);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 24px;
}

.qualification-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #303245;
    margin-bottom: 12px;
}

.qualification-item p {
    color: #6b7280;
    line-height: 1.6;
}
