/* MicroTools - Professional Tools for Business & Life */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.header p {
    font-size: 1.4rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

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

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    color: #00d4ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
}

/* Removed pulse animation for professional look */

/* Freemium Explainer */
.freemium-section {
    margin: 24px 0 32px 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 18px;
    color: #e5e7eb;
}

.freemium-section h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #00d4ff;
}

.freemium-steps {
    margin-left: 18px;
    line-height: 1.6;
}

.freemium-cta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Category Sections */
.category-section {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.tool-card.featured {
    border: 2px solid #00d4ff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.tool-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #00d4ff;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tool-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.tool-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

.tool-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.tool-features {
    margin-bottom: 20px;
}

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

.tool-features li {
    padding: 5px 0;
    color: #555;
    font-size: 0.9rem;
}

.tool-features li:before {
    content: "• ";
    margin-right: 8px;
    color: #00d4ff;
}

.tool-actions {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #00d4ff;
    color: #000;
    border: 1px solid #00d4ff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    background: #0099cc;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-demo {
    background: #28a745;
    color: white;
}

.btn-demo:hover {
    background: #218838;
}

/* Package Deals */
.package-deals {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.package-deals h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 30px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.package-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

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

.package-card.popular {
    border: 3px solid #00d4ff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00d4ff;
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px;
}

.package-savings {
    background: #ffc107;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.package-tools {
    text-align: left;
    margin-bottom: 25px;
}

.package-tools h4 {
    margin-bottom: 15px;
    color: #333;
}

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

.package-tools li {
    padding: 5px 0;
    color: #555;
}

.package-tools li:before {
    content: "🔧 ";
    margin-right: 8px;
}

/* Testimonials */
.testimonials {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .header h1 {
        font-size: 2.5rem;
    }
    
    .freemium-cta {
        flex-direction: column;
        align-items: center;
    }
}
