/* Non-critical CSS - loaded asynchronously */

.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    opacity: 0.9;
}
.hero-badges span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.hero-badges span::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath fill-rule='evenodd' d='M12.416 3.376a.75.75 0 0 1 .208 1.04l-5 7.5a.75.75 0 0 1-1.154.114l-3-3a.75.75 0 0 1 1.06-1.06l2.353 2.353 4.493-6.74a.75.75 0 0 1 1.04-.207Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cta-button::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M3 10a.75.75 0 0 1 .75-.75h10.638L10.23 5.29a.75.75 0 1 1 1.04-1.08l5.5 5.25a.75.75 0 0 1 0 1.08l-5.5 5.25a.75.75 0 1 1-1.04-1.08l4.158-3.96H3.75A.75.75 0 0 1 3 10Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.cta-button:hover {
    background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.45);
}

.cta-button-secondary {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.cta-button-secondary:hover {
    background: #f9fafb;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.trust-bar-content span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trust-bar-content strong {
    color: var(--text);
    font-weight: 600;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.content-block { max-width: 720px; }
.content-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}
.content-block p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}
.content-block ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}
.content-block li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.75rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
    color: white;
    padding: 3.5rem 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 1.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 2rem 0;
    font-size: 0.8125rem;
    color: #92400e;
    line-height: 1.5;
}

.faq-section {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}
.faq-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}
.faq-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}
.stat-card {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}
.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.reasons-list {
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.75rem;
}
.reasons-list h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}
.reasons-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.reasons-list li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid #e2e8f0;
}
.reasons-list li:last-child {
    border-bottom: none;
}
.reasons-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3E%3Cpath fill-rule='evenodd' d='M12.416 3.376a.75.75 0 0 1 .208 1.04l-5 7.5a.75.75 0 0 1-1.154.114l-3-3a.75.75 0 0 1 1.06-1.06l2.353 2.353 4.493-6.74a.75.75 0 0 1 1.04-.207Z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-col h4 {
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.375rem; }
.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}
.footer-bottom p { margin-bottom: 0.5rem; }
