/* Landing-specific styles. Tabler tokens come from brand.css. */

.th-hero {
    background: linear-gradient(180deg, var(--th-primary-light) 0%, #FFFFFF 100%);
}

.th-hero h1 {
    color: var(--th-text);
    line-height: 1.1;
}

.th-hero-search input {
    border-color: var(--th-border-strong);
}

.th-trust-strip > div {
    border-left: 3px solid var(--th-primary);
    padding-left: 0.75rem;
}

/* Category card */
.th-category-card {
    background: var(--th-card);
    border: 1px solid var(--th-border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.th-category-card:hover {
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}
.th-category-card--placeholder {
    background: var(--th-bg);
    border-style: dashed;
}
.th-category-card__image {
    height: 160px;
    overflow: hidden;
}
.th-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* How-it-works step */
.th-step {
    padding: 1.25rem;
}
.th-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--th-primary);
    color: #FFF;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.th-step__img {
    max-width: 200px;
    width: 100%;
    height: auto;
}

/* CTA banner */
.th-cta {
    background: linear-gradient(135deg, var(--th-primary) 0%, var(--th-primary-dark) 100%);
}

/* Mobile typography */
@media (max-width: 575.98px) {
    .th-hero h1 {
        font-size: 2rem;
    }
    .th-hero p.fs-3 {
        font-size: 1.05rem !important;
    }
}
