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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937, #6b7280);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 0.5rem;
    margin-right: 0.75rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #10b981;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(156, 146, 172, 0.1) 0%, transparent 50%);
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, #a78bfa, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

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

/* Search Section */
.search-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

.search-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.search-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.search-box {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 1.5rem 1rem 1.5rem 4rem;
    font-size: 1.125rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.25rem;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
}

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

.category-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(229, 231, 235, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.category-business {
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    border-color: rgba(59, 130, 246, 0.3);
}

.category-content {
    background: linear-gradient(135deg, #d1fae5, #dcfce7);
    border-color: rgba(16, 185, 129, 0.3);
}

.category-development {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    border-color: rgba(147, 51, 234, 0.3);
}

.category-analysis {
    background: linear-gradient(135deg, #fed7aa, #fecaca);
    border-color: rgba(249, 115, 22, 0.3);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

.category-business .category-icon {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.category-content .category-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.category-development .category-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.category-analysis .category-icon {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.category-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-count {
    font-weight: 700;
    font-size: 1.125rem;
}

.category-business .category-count {
    color: #3b82f6;
}

.category-content .category-count {
    color: #10b981;
}

.category-development .category-count {
    color: #8b5cf6;
}

.category-analysis .category-count {
    color: #f97316;
}

/* Tools Section */
.tools {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, white);
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    border: 2px solid #e5e7eb;
    background: white;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.filter-btn:hover:not(.active) {
    border-color: #10b981;
    color: #10b981;
}

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

.tool-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.5s ease;
    overflow: hidden;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.tool-content {
    position: relative;
    padding: 2rem;
}

.tool-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tool-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
}

.tool-meta {
    margin-bottom: 1.5rem;
}

.tool-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    transition: color 0.3s ease;
}

.tool-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 2rem;
}

.tool-description {
    color: #6b7280;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tool-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tool-powered {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.tool-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tool-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Color variants */
.blue {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.blue-100 {
    background-color: #dbeafe;
}

.green-100 {
    background-color: #d1fae5;
}

.purple-100 {
    background-color: #f3e8ff;
}

.orange-100 {
    background-color: #fed7aa;
}

.blue-700 {
    color: #1d4ed8;
}

.green-700 {
    color: #047857;
}

.purple-700 {
    color: #6d28d9;
}

.orange-700 {
    color: #c2410c;
}

.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.gray {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.yellow {
    background: linear-gradient(135deg, #eab308, #ca8a04);
}

.rose {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.red-100 {
    background-color: #fee2e2;
}

.pink-100 {
    background-color: #fce7f3;
}

.gray-100 {
    background-color: #f3f4f6;
}

.indigo-100 {
    background-color: #e0e7ff;
}

.yellow-100 {
    background-color: #fef9c3;
}

.rose-100 {
    background-color: #ffe4e6;
}

.red-700 {
    color: #b91c1c;
}

.pink-700 {
    color: #be185d;
}

.gray-700 {
    color: #374151;
}

.indigo-700 {
    color: #4338ca;
}

.yellow-700 {
    color: #a16207;
}

.rose-700 {
    color: #be123c;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: white;
}

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

.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.services-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
}

.services-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.services-cta p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Small Business Focus Section */
.small-business-focus {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb, #ffffff);
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

.testimonial-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.testimonial p {
    font-size: 1.125rem;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    color: #6b7280;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.about-card {
    text-align: center;
}

.about-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.about-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.about-description {
    color: #6b7280;
}

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

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

.footer-brand {
    grid-column: span 2;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

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

.footer-links a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Hidden class */
.hidden {
    display: none;
}

/* Icons (using Unicode symbols) */
.icon-briefcase::before {
    content: "💼";
}

.icon-pen::before {
    content: "✏️";
}

.icon-code::before {
    content: "💻";
}

.icon-chart::before {
    content: "📊";
}

.icon-search::before {
    content: "🔍";
}

.icon-check::before {
    content: "✅";
}

.icon-zap::before {
    content: "⚡";
}

.icon-shield::before {
    content: "🛡️";
}

.icon-rocket::before {
    content: "🚀";
}

.icon-users::before {
    content: "👥";
}

.icon-heart::before {
    content: "❤️";
}

.icon-arrow-right::before {
    content: "→";
}

.icon-external::before {
    content: "↗";
}

.icon-menu::before {
    content: "☰";
}

.icon-chevron-down::before {
    content: "⌄";
}