.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    padding: calc(var(--nav-h) + 1.75rem) 0 3rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 8% 0 auto;
    height: 65%;
    background-image:
        linear-gradient(rgba(31, 179, 90, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 179, 90, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at center, black 28%, transparent 78%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 1rem;
    width: 10rem;
    height: 10rem;
    border-right: 2px solid rgba(31, 179, 90, 0.18);
    border-bottom: 2px solid rgba(31, 179, 90, 0.18);
}

.hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 360px);
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.hero-content {
    max-width: 42rem;
}

.hero-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4.8rem, 12vw, 8.8rem);
    line-height: 0.88;
    letter-spacing: 0.02em;
    margin-bottom: 1.35rem;
}

.hero-title em {
    color: var(--accent);
    font-style: normal;
}

.hero-desc {
    max-width: 34rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}

.hero-scroll {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.hero-scroll svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.hero-scroll:hover {
    color: var(--text);
}

.hero-visual {
    position: relative;
}

.logo-ring {
    position: relative;
    width: clamp(250px, 30vw, 360px);
    height: clamp(250px, 30vw, 360px);
    margin-left: auto;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(31, 179, 90, 0.14), transparent 58%),
        linear-gradient(145deg, rgba(31, 179, 90, 0.12), transparent 70%);
    border: 1px solid var(--accent-strong);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.2rem;
}

.logo-ring::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 50%;
    border: 1px solid rgba(31, 179, 90, 0.18);
}

.logo-ring img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-section {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.store-preview-section {
    width: min(1180px, 100%);
    margin: 0 auto 4rem;
}

.store-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.store-preview-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.15rem 1.15rem 1.25rem;
    display: grid;
    gap: 0.95rem;
}

.store-preview-label {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.store-preview-frame {
    min-height: 7rem;
    padding: 1.2rem;
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent),
        var(--bg-elevated);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
}

.store-preview-frame .nav-disabled {
    margin-top: 0.2rem;
}

.store-preview-copy {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text);
    text-align: left;
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-q .chevron {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: var(--muted);
    transition:
        transform var(--transition),
        color var(--transition);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 220ms ease,
        padding var(--transition);
}

.faq-item.open .faq-a {
    max-height: 16rem;
    padding: 0 1.35rem 1.2rem;
}

.faq-item.open .chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-a p {
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

@media (max-width: 900px) {
    .hero {
        padding-bottom: 2.5rem;
    }

    .hero::after {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .logo-ring {
        margin: 0 auto;
    }

    .store-preview-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 680px) {
    .hero {
        padding-top: calc(var(--nav-h) + 1.25rem);
    }

    .hero-ctas {
        flex-direction: column;
    }
}
