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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #0a0a0a !important;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00d4ff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #00d4ff;
    color: #000;
    font-weight: 600;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #000;
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #00d4ff;
    border-color: #00d4ff;
}

.btn-outline:hover {
    background: #00d4ff;
    color: #000;
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

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

.feature-card i {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Features Showcase Section - Learn More */
.features-showcase {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.features-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.features-showcase .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-detail-card {
    background: #2a2a2a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
    border-color: #00d4ff;
}

.feature-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333;
}

.feature-detail-header h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin: 0;
}

.feature-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature-description {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-examples {
    margin-bottom: 1.5rem;
}

.feature-examples h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

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

.feature-examples li {
    color: #e0e0e0;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-examples li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

.feature-sites {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
}

.feature-sites h4 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.site-examples {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.site-example {
    background: #1a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.site-example strong {
    color: #ffffff;
    font-weight: 600;
}

.site-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.site-link:hover {
    color: #00b8e6;
    text-decoration: underline;
}

.site-note {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: #2a2a2a;
    border-radius: 15px;
    border: 1px solid #333;
}

.features-cta h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features-cta p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #0a0a0a;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: #2a2a2a;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 2px solid #333;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.pricing-card.featured {
    border-color: #00d4ff;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(0, 212, 255, 0.4);
}

.pricing-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    color: #00d4ff;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    color: #b0b0b0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-features {
    margin: 2rem 0;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid #333;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #00d4ff;
    font-size: 0.9rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.pricing-note p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note strong {
    color: #000000;
}

.pricing-note a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.pricing-note a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.portfolio h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.portfolio-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
}

.portfolio-image {
    height: 250px;
    background: #333;
    position: relative;
    overflow: hidden;
}

.website-preview {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
}

.preview-dots {
    display: flex;
    gap: 4px;
}

.preview-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6c757d;
}

.preview-url {
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
}

.preview-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.preview-nav {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
}

.preview-hero h3 {
    font-size: 1.4rem;
    color: #212529;
    margin-bottom: 8px;
    font-weight: 600;
}

.preview-hero p {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.preview-btn {
    background: #00d4ff;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.preview-btn:hover {
    background: #0099cc;
}

/* Industry-specific color schemes */
.website-preview.tech-startup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.website-preview.restaurant {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.website-preview.consulting {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.website-preview.ecommerce {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.website-preview.healthcare {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.website-preview.fitness {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.website-preview.fintech {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.website-preview.realestate {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.preview-features {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-details {
    padding: 1.5rem;
}

.portfolio-details h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.portfolio-result {
    color: #00d4ff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.portfolio-stats .stat {
    background: #1a1a1a;
    color: #00d4ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #333;
}

.portfolio-link {
    color: #00d4ff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.portfolio-link:hover {
    color: #ffffff;
}

.portfolio-link i {
    font-size: 0.8rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid #333;
}

.cta h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 2rem 0;
        border-top: 1px solid #333;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        text-align: center;
    }
}

/* Hero Descriptions */
.hero-descriptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.description-item {
    text-align: center;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align-last: center;
}

.description-item h4,
.description-item p,
.description-item small {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.description-item h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.description-item p {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.description-item small {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Specific targeting for the third description item */
.description-item:nth-child(3) {
    text-align: center;
    align-items: center;
    justify-content: center;
}

.description-item:nth-child(3) h4,
.description-item:nth-child(3) p,
.description-item:nth-child(3) small {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    display: block;
}

/* Portfolio Preview Styles */
.website-preview.ai-solutions {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.website-preview.clearcoreai {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid #333;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover {
    color: #00d4ff;
}

.modal h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal .form-group input,
.modal .form-group select,
.modal .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
}

.modal .form-group input:focus,
.modal .form-group select:focus,
.modal .form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

.btn-large {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin: 1rem auto;
    text-align: center;
    max-width: 180px;
    width: 100%;
}

.hero-quote {
    margin: 1rem 0;
    text-align: center;
}

.hero-quote h2 {
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: 600;
    font-style: italic;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    margin: 0;
}

.hero-cta {
    text-align: center;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Market Pricing Section */
.market-pricing {
    background: #f8fafc;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.pricing-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.market-pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.market-pricing-card h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.market-prices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .service {
    color: #475569;
    font-weight: 500;
}

.price-item .price {
    color: #dc2626;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-note {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.pricing-note h4 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.pricing-note p {
    color: #991b1b;
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .pricing-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-descriptions {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 1.5rem;
    }
    
    .pricing-comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-size: 2.5rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #007bff;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: #007bff;
    font-size: 1.1rem;
}

.testimonial-company {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Case Studies Section */
.case-studies {
    background: white;
    padding: 80px 0;
}

.case-studies h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-size: 2.5rem;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.case-study h3 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.case-metrics {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
    gap: 20px;
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 5px;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
}

.case-description {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .testimonial-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 15px;
    }
}
