/* Trail Maps Feature Page */

/* Hero iframe demo */
.hero__demo {
    margin-top: var(--space-10);
    padding-bottom: var(--space-12);
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero__demo iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: #fff;
}

@media (min-width: 768px) {
    .hero__demo iframe {
        height: 500px;
    }
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    gap: var(--space-8);
    margin-top: var(--space-12);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    text-align: center;
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary-500);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-family-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-4);
}

.step__title {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-2);
}

.step__description {
    font-size: var(--font-size-sm);
    color: var(--color-neutral-600);
    line-height: var(--line-height-relaxed);
}

/* Trail Maps Screenshot */
.trail-maps-screenshot {
    display: flex;
    justify-content: center;
}

.trail-maps-screenshot img {
    width: 100%;
    max-width: 500px;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-neutral-200);
}

/* Feature detail list */
.feature-detail-list {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--color-neutral-600);
    line-height: var(--line-height-relaxed);
}

.feature-detail-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}
