:root {
    --primary-color: #be123c;
    --secondary-color: #27272a;
    --background-color: #000000;
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: #374151;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --container-max-width: 1536px;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 18px;
    line-height: 28px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.navbar-brand {
    text-decoration: none;
    color: var(--text-color);
}

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

.logo-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

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

.navbar-nav .nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.search-container {
    position: relative;
    width: 300px;
}

.search-input {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-shortcut {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

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

.btn-primary:hover {
    background-color: #a21e3a;
    color: white;
}

.btn-outline-light {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline-light:hover {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

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

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

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

main {
    padding-top: 80px;
}

.hero-section {
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

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

.cta-link {
    color: #fb923c;
    text-decoration: none;
    font-weight: 500;
}

.cta-link:hover {
    color: #ea580c;
}

.search-hero {
    max-width: 600px;
    margin: 0 auto;
}

.search-box {
    position: relative;
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-icon {
    color: var(--text-muted);
    font-size: 1.25rem;
}

.search-box input {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1rem;
    flex: 1;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.features-section {
    padding: 80px 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.card-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(99, 102, 241, 0.1));
}

.card-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
}

.card-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.1));
}

.card-orange {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(245, 158, 11, 0.1));
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.card-image {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 80px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tools-section {
    padding: 80px 0;
}

.section-header h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-icon {
    color: #fb923c;
    margin-right: 0.5rem;
}

.text-primary {
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.tool-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
}

.tool-card:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}

.tool-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.tool-category {
    color: #60a5fa;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.tool-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: var(--background-color);
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    border: 1px solid var(--border-color);
}

.community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(59, 130, 246, 0.05));
}

.community-header {
    max-width: 800px;
    margin: 0 auto;
}

.community-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.community-header h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.community-subtitle {
    color: var(--text-muted);
}

.articles-section {
    padding: 80px 0;
}

.article-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.2s ease;
}

.article-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.article-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: white;
}

.article-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.bg-success {
    background-color: var(--success-color);
    color: white;
}

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

.bg-warning {
    background-color: var(--warning-color);
    color: white;
}

.footer {
    background-color: var(--secondary-color);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.contact-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-divider {
    border-color: var(--border-color);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-main {
    padding-top: 80px;
}

.pricing-hero {
    padding: 80px 0;
    text-align: center;
}

.pricing-cards {
    padding: 40px 0;
}

.pricing-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(190, 18, 60, 0.1), rgba(190, 18, 60, 0.05));
}

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

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

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-muted);
}

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

.period {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features .fa-check {
    color: var(--success-color);
}

.pricing-features {
    padding: 40px 0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-faq {
    padding: 80px 0;
}

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

.accordion-button {
    background-color: transparent;
    color: var(--text-color);
    border: none;
    padding: 1rem;
    width: 100%;
    text-align: left;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-body {
    padding: 1rem;
    color: var(--text-muted);
}

.pricing-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(190, 18, 60, 0.05), rgba(190, 18, 60, 0.02));
}

.contact-main {
    padding-top: 80px;
}

.contact-hero {
    padding: 80px 0;
    text-align: center;
}

.contact-form-section {
    padding: 40px 0;
}

.contact-form-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
}

.form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control, .form-select {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 0.75rem;
    border-radius: 0.5rem;
    width: 100%;
    margin-bottom: 1rem;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(190, 18, 60, 0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

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

.form-check-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
}

.legal-main {
    padding-top: 80px;
}

.legal-hero {
    padding: 80px 0;
    text-align: center;
}

.legal-content {
    padding: 40px 0;
}

.legal-document {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 3rem;
}

.legal-document h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

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

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

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

.legal-document ul {
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 24px;
    }
    
    .search-container {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
    
    .tool-card {
        margin-bottom: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .legal-document {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .features-section,
    .tools-section,
    .community-section,
    .articles-section {
        padding: 40px 0;
    }
    
    .pricing-hero,
    .contact-hero,
    .legal-hero {
        padding: 40px 0;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
}
