/* Homepage premium sections */

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 0;
    border-bottom: none;
    margin-bottom: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-strong), transparent);
}

.hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
    padding-bottom: 4rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual img,
.hero-visual svg {
    width: 100%;
    max-width: 420px;
    height: auto;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.hero-visual-glow {
    position: absolute;
    width: 70%;
    height: 50%;
    background: radial-gradient(ellipse, var(--color-accent-muted) 0%, transparent 70%);
    pointer-events: none;
}

.trust-strip {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    padding: 1.15rem 0;
    margin-bottom: 4.5rem;
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-muted);
    letter-spacing: 0.01em;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.process-section {
    padding: 4.5rem 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-subtle);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 2rem;
}

.process-step {
    padding: 1.75rem 1.5rem;
    background: var(--color-surface);
}

.process-num {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 0.85rem;
}

.process-step h3 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem;
}

.process-step p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.cta-band {
    margin: 4.5rem auto;
    padding: 3rem;
    text-align: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, var(--color-accent-muted), transparent 60%);
    pointer-events: none;
}

.cta-band h2 {
    position: relative;
    font-size: 1.5rem;
    margin: 0 0 0.65rem;
    letter-spacing: -0.03em;
}

.cta-band p {
    position: relative;
    color: var(--color-muted);
    max-width: 42ch;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
}

.cta-band .hero-actions {
    position: relative;
    justify-content: center;
}

.product-card .card-view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-muted);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s, color 0.2s;
}

.product-card:hover .card-view-link {
    opacity: 1;
    transform: translateY(0);
}

.product-card .card-view-link:hover {
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
    .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero { padding: 2.5rem 0 0; }
    .hero-inner { padding-bottom: 2.5rem; gap: 2rem; }
    .trust-strip { margin-bottom: 3rem; }
    .process-section { padding: 3rem 0; }
    .cta-band {
        margin: 3rem auto;
        padding: 2rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .process-grid { grid-template-columns: 1fr; }
    .trust-strip-inner { gap: 1rem 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .product-card .card-view-link { opacity: 1; transform: none; }
}

.clients-section {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.clients-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin: 0 0 1.25rem;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 2.5rem;
    opacity: 0.55;
}

.clients-grid img {
    height: 28px;
    width: auto;
    color: var(--color-text-secondary);
    filter: grayscale(1);
    transition: opacity 0.2s, filter 0.2s;
}

.clients-grid img:hover {
    opacity: 1;
    filter: grayscale(0);
}

[data-theme="light"] .clients-grid img {
    opacity: 0.65;
}
