:root {
    --gear-grotto-primary: #b45309;
    --gear-grotto-secondary: #d97706;
    --gear-grotto-gradient: linear-gradient(135deg, #b45309 0%, #d97706 100%);
}

.app-hero {
    background: var(--gear-grotto-gradient);
}

.btn-white {
    color: var(--gear-grotto-primary);
}

.btn-outline-white:hover {
    color: var(--gear-grotto-primary);
}

.feature-icon {
    background: var(--gear-grotto-gradient);
}

.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gear-grotto-gradient);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.step-card p {
    color: #64748b;
    line-height: 1.6;
}

.screenshot-placeholder {
    background: var(--gear-grotto-gradient);
}

.screenshots-section {
    background: #f8fafc;
}

.stat-number {
    color: var(--gear-grotto-primary);
}

.download-section {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
}

.offline-highlight {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #d97706;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.offline-highlight h3 {
    color: #92400e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offline-highlight p {
    color: #92400e;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.offline-highlight ul {
    color: #92400e;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.offline-highlight li {
    margin-bottom: 0.5rem;
}
