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

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #888888;
    background-color: #ffffff;
}

/* Header Styles - Exact replica of adenhq.com */
.header-section {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar-brand {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
}

.logo i {
    font-size: 28px;
    margin-right: 8px;
    color: #4f46e5;
}

.navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
    font-size: 16px;
    padding: 0 20px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #4f46e5;
}

.navbar-buttons .btn {
    font-weight: 500;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-dark {
    border-color: #303030;
    color: #303030;
}

.btn-outline-dark:hover {
    background-color: #303030;
    border-color: #303030;
    color: #ffffff;
}

.btn-dark {
    background-color: #303030;
    border-color: #303030;
    color: #ffffff;
}

.btn-dark:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

/* Hero Section - Exact replica styling */
.hero-section {
    padding: 80px 0 120px;
    background-color: #ffffff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #888888;
    margin-bottom: 10px;
}

.hero-description {
    font-size: 18px;
    color: #888888;
    margin-bottom: 40px;
}

.hero-intro-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: left;
}

.hero-intro-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.hero-intro-section p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.email-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.input-group .form-control {
    border: none;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 0;
}

.input-group .btn {
    border-radius: 0;
    padding: 12px 24px;
    font-weight: 600;
}

.hero-image {
    margin-top: 60px;
}

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

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.feature-stats {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.stat-label {
    font-size: 14px;
    color: #888888;
    margin-right: 10px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-right: 10px;
}

.stat-description {
    font-size: 14px;
    color: #888888;
    margin-right: auto;
}

.stat-chart i {
    font-size: 24px;
    color: #4f46e5;
}

.feature-list h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
    color: #666666;
}

.feature-list li i {
    color: #4f46e5;
    margin-right: 12px;
    font-size: 16px;
}

.feature-highlight {
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 12px;
    color: white;
}

.highlight-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.highlight-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-number {
    font-size: 20px;
    font-weight: 700;
}

.feature-demo img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.benefits-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.benefit-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 24px;
    color: #4f46e5;
}

.benefit-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
}

.benefit-highlight {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.highlight-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.highlight-stat .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #f59e0b;
}

.highlight-stat .stat-label {
    font-size: 16px;
    color: #666666;
}

.highlight-stat .stat-text {
    font-size: 16px;
    color: #666666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
    border-left: 4px solid #4f46e5;
}

.testimonial-content p {
    font-size: 16px;
    color: #333333;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    font-size: 14px;
    color: #888888;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

.cta-buttons .btn {
    font-size: 16px;
    padding: 12px 30px;
    font-weight: 600;
}

/* Footer Styles */
.footer-section {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.contact-info p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-info a {
    color: #4f46e5;
    text-decoration: none;
}

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

.footer-divider {
    border-color: #333333;
    margin: 40px 0 20px;
}

.footer-copyright {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: end;
}

.footer-legal a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .navbar-buttons {
        margin-top: 15px;
    }
    
    .navbar-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .feature-stats {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-stat {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 20px;
    }
}

/* Pricing Page Specific Styles */
.pricing-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.pricing-header p {
    font-size: 18px;
    color: #666666;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #4f46e5;
    transform: scale(1.05);
}

.pricing-badge {
    background-color: #f59e0b;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.pricing-period {
    font-size: 14px;
    color: #888888;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.pricing-features li i {
    color: #4f46e5;
    margin-right: 10px;
    margin-top: 2px;
    font-size: 12px;
}

.pricing-cta {
    width: 100%;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.25);
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: 100%;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-item i {
    color: #4f46e5;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 18px;
}

.contact-info-item div {
    flex: 1;
}

.contact-info-item strong {
    color: #000000;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.contact-info-item span {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

/* Legal Pages Styles */
.legal-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 16px;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: #888888;
    margin-bottom: 40px;
}
