/* assets/css/home.css */

.hero-section {
    padding: 10px 20px 80px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    background-color: var(--bg-color);
}

.hero-content {
    max-width: 850px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #084298;
    background-color: #cfe2ff;
    border: 1px solid #b6d4fe;

    border-radius: 50px;
    margin-bottom: 24px;
}


.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: -1px;
}

.highlight-text {
    /* Solid color instead of gradient to fix LCP issues */
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--footer-text);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

/* Trust Indicators */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.trust-item svg {
    color: #10b981;
    /* Green checkmarks */
}

.trust-item.divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--border-color);
}

/* --- Standard Tools Grid Section --- */
.tools-section {
    padding: 60px 20px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-header p {
    color: var(--footer-text);
    font-size: 1.1rem;
}

.tools-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Tool Cards */
.tool-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: var(--nav-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .tool-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tool-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-icon-wrapper {
    background-color: var(--primary-color);
    color: #ffffff;
}

.tool-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.tool-card:hover .tool-info h3 {
    color: var(--primary-color);
}

.tool-info p {
    font-size: 0.95rem;
    color: var(--footer-text);
    line-height: 1.5;
}

/* --- Feature Showcase Section --- */
.feature-showcase-section {
    padding: 80px 20px;
    max-width: 900px;
    /* Narrower for better reading */
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
}

.showcase-row {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--nav-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.showcase-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.showcase-content p {
    font-size: 1.1rem;
    color: var(--footer-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 15px;
    }

    .trust-item.divider {
        display: none;
    }

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

    .showcase-row {
        padding: 24px;
    }
}