/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-accent {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    color: #5DC7B7;
    font-weight: bold;
    margin-top: 1rem;
    border: 1px solid #5DC7B7;
    font-size: 0.875rem;
}

/* Tools Section */
.tools-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.tool-card {
    border: 2px solid #5DC7B7;
    padding: 2rem;
    background: #fff;
    transition: all 0.3s;
    position: relative;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #5DC7B7;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(93, 199, 183, 0.2);
}

.tool-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #5DC7B7;
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tool-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tool-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.tool-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tool-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.tool-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #5DC7B7;
    font-weight: bold;
}

.tool-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #5DC7B7;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
    border: 2px solid #5DC7B7;
}

.tool-link:hover {
    background: transparent;
    color: #5DC7B7;
}

.coming-soon-card {
    border: 2px dashed #ccc;
    padding: 2rem;
    background: #f9f9f9;
    text-align: center;
}

.coming-soon-card h3 {
    color: #999;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: #fff;
    padding: 4rem 1rem;
    margin: 4rem 0;
    text-align: center;
    border-left: 4px solid #5DC7B7;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #5DC7B7;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.125rem;
    transition: all 0.2s;
    border: 2px solid #5DC7B7;
}

.cta-button:hover {
    background: transparent;
    color: #5DC7B7;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}